2019年12月16日月曜日

学習環境

微分積分学 (ちくま学芸文庫) (吉田 洋一(著)、筑摩書房)のⅢ.(平均値の定理)、演習問題Ⅲ、問20.の解答を求めてみる。


  1. h x = f x g x

    とおく。

    このとき、

    h ' x = f ' x g x - f x g ' x g x 2

    また、

    f ' x f x = g ' x g x

    なので、

    f ' x g x = f x g ' x f ' x g x - f x g ' x h ' x = 0

    よって、 h は定数関数である。その定数の値をC とおけば、

    h x = C f x g x = C f x = C g x

    (証明終)

コード

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

print('20.')

x = symbols('x', real=True)
f = x ** 2
g = 2 * f
f1 = Derivative(f, x, 1).doit()
g1 = Derivative(g, x, 1).doit()


class MyTestCase(TestCase):
    def test(self):
        self.assertEqual(f1 / f, g1 / g)


p = plot(f, g,
         (x, -5, 5),
         ylim=(0, 10),
         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('sample20.png')

if __name__ == '__main__':
    main()

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

% ./sample20.py
20.
.
----------------------------------------------------------------------
Ran 1 test in 0.002s

OK
%

0 コメント:

コメントを投稿