学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅴ部(“ε-δ”その他)、付録1(εとδ)、2(極限)の練習問題6を求めてみる。
の場合、
また、
の場合、
また、
の場合、
よって、 極限は存在する。
コード
#!/usr/bin/env python3
from sympy import pprint, symbols, plot, Limit, oo, Rational, Limit
print('6.')
x, n, y = symbols('x, n, y')
g = ((x ** n - 1) / (x ** n + 1)) ** 2
h = ((y ** x - 1) / (y ** x + 1)) ** 2
gs = [g.subs({n: n0}) for n0 in range(5)]
hs = [h.subs({y: y0}) for y0 in range(5)]
p = plot(*gs, *hs,
(x, -5, 5),
ylim=(0, 2),
show=False,
legend=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
'purple', 'pink', 'gray', 'skyblue', 'yellow']
for o, color in zip(p, colors):
o.line_color = color
for o, color in zip(gs + hs, colors):
print(o, color)
p.show()
p.save('sample6.png')
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample6.py
6.
0 red
(x - 1)**2/(x + 1)**2 green
(x**2 - 1)**2/(x**2 + 1)**2 blue
(x**3 - 1)**2/(x**3 + 1)**2 brown
(x**4 - 1)**2/(x**4 + 1)**2 orange
(0**x - 1)**2/(0**x + 1)**2 purple
0 pink
(2**x - 1)**2/(2**x + 1)**2 gray
(3**x - 1)**2/(3**x + 1)**2 skyblue
(4**x - 1)**2/(4**x + 1)**2 yellow
%
0 コメント:
コメントを投稿