2019年5月27日月曜日

学習環境

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


  1. d dx tan x = d dx sin x cos x = cos 2 x + sin 2 x cos 2 x = 1 cos 2 x d 2 d x 2 tan x = - 2 cos x - sin x cos 4 x = 2 sin x cos 3 x d 3 d x 3 tan x = 2 cos 4 x - 2 sin x 3 cos 2 x - sin x cos 6 x

    よって、 求める問題の関数に対する3次のテイラー多項式は、

    x + 2 3 ! x 3 = x + 1 3 x 3

コード

Python 3

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

print('5.')

x = symbols('x')

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

pprint(g)

p = plot(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('sample5.png')

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

C:\Users\...>py sample5.py
5.
 3    
x     
── + x
3     

C:\Users\...>

0 コメント:

コメントを投稿