2019年6月10日月曜日

学習環境

解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第4部(級数)、第14章(テイラーの公式)、補充問題15-(e)の解答を求めてみる。



    1. arctan x = x - 1 3 x 3 + O x 5 cos x = 1 - 1 2 ! x 2 + O x 4

      よって、 求める 問題の逆正接関数と余弦の積の4次のテイラー多項式は、

      x + - 1 2 - 1 3 x 3 = x - 5 6 x 3

コード

Python 3

#!/usr/bin/env python3
from sympy import pprint, symbols, plot, factorial, Derivative, atan, cos

print('15-(e).')

x = symbols('x')

f = atan(x) * cos(x)
g = sum([Derivative(f, x, n).doit().subs({x: 0}) / factorial(n) * x ** n
         for n in range(5)])

pprint(g)

p = plot(atan(x), cos(x), f, g.doit(),
         (x, -5, 5),
         ylim=(-5, 5),
         legend=True,
         show=False)
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('sample15.png')

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

C:\Users\...>py sample15.py
15-(e).
   4     
  x     2
- ── + x 
  2      

C:\Users\...>

0 コメント:

コメントを投稿