数学のブログ

変数と関数 関数の極限 累乗、三角関数、余弦、テイラー展開

微分積分演習〈理工系の数学入門コース/演習 新装版〉 (和達 三樹(著)、十河 清(著)、岩波書店)の第2章(変数と関数)、2-2(関数の極限)、問題1の解答を求めてみる。

1

lim x 1 x 2 + x - 2 x 2 - 1 = lim x 1 ( x - 1 ) ( x + 2 ) ( x - 1 ) ( x + 1 ) = lim x 1 x + 2 x + 1 = 3 2

2

lim x 0 1 - cos x x 2 = lim x 0 1 - n = 0 ( - 1 ) n ( 2 n ) ! x 2 n x 2
= lim x 0 n = 1 ( - 1 ) n + 1 ( 2 n ) ! x 2 n - 2
= lim x 0 ( 1 2 + n = 2 ( - 1 ) n + 1 ( 2 n ) ! x 2 n - 2 )
= 1 2

コード(Wolfram Language, Jupyter)

Limit[(x^2+x-2)/(x^2-1), x -> 1]
Output
Limit[(1-Cos[x])/x^2, x -> 0]
Output
Plot[{3/2, (x^2+x-2)/(x^2-1)}, {x, -5, 5}, PlotLegends -> "Expressions"]
Output
Plot[{1/2, (1-Cos[x])/x^2}, {x, -5, 5}, PlotLegends -> "Expressions"]
Output