2019年10月4日金曜日

学習環境

微分積分学 (ちくま学芸文庫) (吉田 洋一(著)、筑摩書房)のⅡ.(微分法の公式)、6.(導関数の求め方)、演習問題I8の解答を求めてみる。


  1. d dx a 2 + x 2 4 5 b 2 + x 2 2 3 = d dx a 2 + x 2 4 5 b 2 + x 2 - 2 3 = a 2 + x 2 4 5 b 2 + x 2 - 2 3 4 5 2 x a 2 + x 2 + 2 3 2 x b 2 + x 2 = a 2 + x 2 4 5 b 2 + x 2 - 2 3 · 4 x 2 5 · 1 a 2 + x 2 + 1 3 · 1 b 2 + x 2 = a 2 + x 2 4 5 b 2 + x 2 2 3 4 x 2 5 a 2 + x 2 + 1 3 b 2 + x 2

コード

Python 3

#!/usr/bin/env python3
from sympy import pprint, symbols, Derivative, plot, Rational, root
from unittest import TestCase, main

print('18.')

x, a, b = symbols('x, a, b')
f = root((a ** 2 + x ** 2) ** 4, 5) * root((b ** 2 + x ** 2) ** 2, 3)
d = Derivative(f, x, 1)

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


p = plot(f.subs({a: 1, b: 2}),
         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('sample18.png')

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

$ ./sample18.py
18.
  ⎛    ____________     ____________⎞
  ⎜   ╱          4     ╱          2 ⎟
∂ ⎜5 ╱  ⎛ 2    2⎞   3 ╱  ⎛ 2    2⎞  ⎟
──⎝╲╱   ⎝a  + x ⎠  ⋅╲╱   ⎝b  + x ⎠  ⎠
∂x                                   

                              ____________     ____________
                             ╱          4     ╱          2 
    ⎛   2      2       2⎞ 5 ╱  ⎛ 2    2⎞   3 ╱  ⎛ 2    2⎞  
4⋅x⋅⎝5⋅a  + 6⋅b  + 11⋅x ⎠⋅╲╱   ⎝a  + x ⎠  ⋅╲╱   ⎝b  + x ⎠  
───────────────────────────────────────────────────────────
                      ⎛ 2    2⎞ ⎛ 2    2⎞                  
                   15⋅⎝a  + x ⎠⋅⎝b  + x ⎠                  

$ 

0 コメント:

コメントを投稿