2019年11月28日木曜日

学習環境

解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅴ部(“ε-δ”その他)、付録1(εとδ)、2(極限)の練習問題5を求めてみる。



    1. x = 0

      の場合、

      f 0 = lim n - 1 1 = - 1

      また、

      0 < x < 1

      の場合、

      f x = lim n x n - 1 x n + 1 = - 1

      また、

      x = 1

      の場合、

      f 1 = lim n 1 - 1 1 + 1 = 0

      また、

      x > 1

      の場合、

      lim n x n - 1 x n + 1 = lim n 1 - 1 x n 1 + 1 x n = 1

      よって極限は存在する。

      (証明終)

      f 1 = 0 f 1 2 = - 1 f 2 = 1

    2. lim x 1 f x = 0

    3. lim x - 1 f x

      は存在しない。

コード

#!/usr/bin/env python3
from sympy import pprint, symbols, plot, Limit, oo, Rational

print('5.')

x, n = symbols('x, n')
g = (x ** n - 1) / (x ** n + 1)

p = plot(*[g.subs({n: n0}) for n0 in range(5)],
         (x, -5, 5),
         ylim=(-5, 5),
         show=False,
         legend=True)
colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

for o, color in zip(p, colors):
    o.line_color = color

p.show()
p.save('sample5.png')

入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))

% ./sample5.py
5.
%

0 コメント:

コメントを投稿