2019年9月21日土曜日

学習環境

解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第4部(級数)、第15章(級数)、6(べき級数)の練習問題2を求めてみる。


  1. lim n 1 n n 1 n = lim n 1 n = 0

    よって、収束半径は

コード

Python 3

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

print('2.')

n, m, x = symbols('n, m, x')
an = 1 / n ** n
f = summation(an * x ** n, (n, 1, m))

s = Limit(abs(an) ** (1 / n), n, oo)

for o in [s, s.doit(), 1 / s.doit()]:
    pprint(o)
    print()

ms = range(1, 10)
fs = [f.subs({m: m0}) for m0 in ms] + [f.subs({m: oo})]
p = plot(*fs,
         (x, -10, 10),
         ylim=(-10, 10),
         legend=False,
         show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

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

for o in zip(fs, colors):
    pprint(o)

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

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

C:\Users\...>py sample2.py
2.
       _______
    n ╱ │ -n│ 
lim ╲╱  │n  │ 
n─→∞          

0

zoo

⎛  1              ⎞
⎜ ___             ⎟
⎜ ╲               ⎟
⎜  ╲    -n  n     ⎟
⎜  ╱   n  ⋅x , red⎟
⎜ ╱               ⎟
⎜ ‾‾‾             ⎟
⎝n = 1            ⎠
⎛  2                ⎞
⎜ ___               ⎟
⎜ ╲                 ⎟
⎜  ╲    -n  n       ⎟
⎜  ╱   n  ⋅x , green⎟
⎜ ╱                 ⎟
⎜ ‾‾‾               ⎟
⎝n = 1              ⎠
⎛  3               ⎞
⎜ ___              ⎟
⎜ ╲                ⎟
⎜  ╲    -n  n      ⎟
⎜  ╱   n  ⋅x , blue⎟
⎜ ╱                ⎟
⎜ ‾‾‾              ⎟
⎝n = 1             ⎠
⎛  4                ⎞
⎜ ___               ⎟
⎜ ╲                 ⎟
⎜  ╲    -n  n       ⎟
⎜  ╱   n  ⋅x , brown⎟
⎜ ╱                 ⎟
⎜ ‾‾‾               ⎟
⎝n = 1              ⎠
⎛  5                 ⎞
⎜ ___                ⎟
⎜ ╲                  ⎟
⎜  ╲    -n  n        ⎟
⎜  ╱   n  ⋅x , orange⎟
⎜ ╱                  ⎟
⎜ ‾‾‾                ⎟
⎝n = 1               ⎠
⎛  6                 ⎞
⎜ ___                ⎟
⎜ ╲                  ⎟
⎜  ╲    -n  n        ⎟
⎜  ╱   n  ⋅x , purple⎟
⎜ ╱                  ⎟
⎜ ‾‾‾                ⎟
⎝n = 1               ⎠
⎛  7               ⎞
⎜ ___              ⎟
⎜ ╲                ⎟
⎜  ╲    -n  n      ⎟
⎜  ╱   n  ⋅x , pink⎟
⎜ ╱                ⎟
⎜ ‾‾‾              ⎟
⎝n = 1             ⎠
⎛  8               ⎞
⎜ ___              ⎟
⎜ ╲                ⎟
⎜  ╲    -n  n      ⎟
⎜  ╱   n  ⋅x , gray⎟
⎜ ╱                ⎟
⎜ ‾‾‾              ⎟
⎝n = 1             ⎠
⎛  9                  ⎞
⎜ ___                 ⎟
⎜ ╲                   ⎟
⎜  ╲    -n  n         ⎟
⎜  ╱   n  ⋅x , skyblue⎟
⎜ ╱                   ⎟
⎜ ‾‾‾                 ⎟
⎝n = 1                ⎠
⎛  ∞                 ⎞
⎜ ___                ⎟
⎜ ╲                  ⎟
⎜  ╲    -n  n        ⎟
⎜  ╱   n  ⋅x , yellow⎟
⎜ ╱                  ⎟
⎜ ‾‾‾                ⎟
⎝n = 1               ⎠

c:\Users\...>

0 コメント:

コメントを投稿