2019年3月16日土曜日

学習環境

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


  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 dx 2 tan x = 2 cos x sin x cos 4 x = 2 sin x cos 3 x d 3 dx 3 tan x = 2 cos 4 x - 2 sin x · 3 cos 2 x - sin x cos 6 x = 2 cos 4 x + 6 sin 2 x cos 2 x cos 6 x d 4 dx 4 tan x = 2 · A sin x cos 12 x

    求める4次のテイラー多項式。

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

コード

Python 3

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

print('6.')

x = symbols('x')
f = tan(x)
g = sum([Derivative(f, x, i).subs({x: 0}) * x ** i / factorial(i)
         for i in range(5)])

for o in [g, g.doit()]:
    pprint(o)
    print()

p = plot(tan(x), g.doit(), ylim=(-10, 10), show=False, legend=True)
colors = ['red', 'green', 'blue']
for o, color in zip(p, colors):
    o.line_color = color

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

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

C:\Users\...>py -3 sample6.py
6.
   ⎛  4        ⎞│         ⎛  3        ⎞│         ⎛  2        ⎞│               
 4 ⎜ d         ⎟│       3 ⎜ d         ⎟│       2 ⎜ d         ⎟│               
x ⋅⎜───(tan(x))⎟│      x ⋅⎜───(tan(x))⎟│      x ⋅⎜───(tan(x))⎟│               
   ⎜  4        ⎟│         ⎜  3        ⎟│         ⎜  2        ⎟│               
   ⎝dx         ⎠│x=0      ⎝dx         ⎠│x=0      ⎝dx         ⎠│x=0     ⎛d     
──────────────────── + ──────────────────── + ──────────────────── + x⋅⎜──(tan
         24                     6                      2               ⎝dx    

         
         
         
         
    ⎞│   
(x))⎟│   
    ⎠│x=0

 3    
x     
── + x
3     


C:\Users\...>

0 コメント:

コメントを投稿