変数と関数 関数の極限 不定形、累乗、三角関数(正弦)、指数関数、対数関数、増加、減少の速さ
微分積分演習〈理工系の数学入門コース/演習 新装版〉 (和達 三樹(著)、十河 清(著)、岩波書店)の第2章(変数と関数)、2-2(関数の極限)、問題3の解答を求めてみる。
1
また、
よって、
2
よって、
よって、
3
コード(Wolfram Language, Jupyter)
Limit[x Sin[a / x], x -> Infinity]
a
Limit[x Sin[a / x], x -> 0]
Simplify[%, Element[a, Reals]]
0
Plot[{x Sin[2 / x], x Sin[-2 / x]}, {x, -5, 5}, PlotLegends -> "Expressions"]
Plot[{x Sin[2 / x], x Sin[-2 / x]}, {x, -1, 1}, PlotLegends -> "Expressions"]
Plot[{x Sin[2 / x], x Sin[-2 / x]}, {x, 100, 1000}, PlotLegends -> "Expressions"]
Limit[x^(1/x), x -> Infinity]
1
Limit[x^(1/x), x -> 0, Direction -> -1]
0
Plot[x^(1/x), {x, 0.1, 5}]
Plot[x^(1/x), {x, 1, 10^6}]
Limit[1/(Exp[x] + 1), x -> Infinity]
0
Limit[1/(Exp[x] + 1), x -> 0]
Plot[1/(Exp[x] + 1), {x, -5, 5}]