2019年12月20日金曜日

学習環境

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


  1. 関数 g を

    g x = det [ f a φ a ψ a f b φ b ψ b f x φ x ψ x ] = f a φ b ψ x + φ a ψ b f x + ψ a f b φ x - f a ψ b φ x - φ a f b ψ x - ψ a φ b f x

    とおく。

    このとき、

    g a = 0 g b = 0 g ' x = f a φ b ψ ' x + φ a ψ b f ' x + ψ a f b φ ' x - f a ψ b φ ' x - φ a f b ψ ' x - ψ a φ b f ' x = det [ f a φ a ψ a f b ψ b ψ b f ' x φ ' x ψ ' x ]

    ロルの定理により、

    a < ξ < b g ' ξ = 0

    を満たすものが存在する。

    (証明終)

コード

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

print('22.')

x = symbols('x', real=True)
f = x / 10 + 2
g = x ** 2 / 20
h = x ** 3 / 30
a = -2
b = 3
d = Matrix([[t.subs({x: x0})for x0 in [a, b, x]]
            for t in [f, g, h]]).det()

d1 = Derivative(d, x, 1).doit()
fs = [f, g, h, d, d1]


class MyTestCase(TestCase):
    def test(self):
        s = solveset(d1, domain=Interval.open(a, b))
        self.assertGreater(len(s), 0)


p = plot(*fs,
         (x, -5, 5),
         ylim=(-5, 5),
         legend=False,
         show=False)

colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

for o, color in zip(p, colors):
    o.line_color = color

for o in zip(fs, colors):
    pprint(o)

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

if __name__ == '__main__':
    main()

入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))

% ./sample22.py -v
22.
⎛x          ⎞
⎜── + 2, red⎟
⎝10         ⎠
⎛ 2       ⎞
⎜x        ⎟
⎜──, green⎟
⎝20       ⎠
⎛ 3      ⎞
⎜x       ⎟
⎜──, blue⎟
⎝30      ⎠
⎛   3       2                 ⎞
⎜7⋅x    67⋅x    3⋅x   3       ⎟
⎜──── - ───── + ─── + ─, brown⎟
⎝600     600    100   5       ⎠
⎛   2                     ⎞
⎜7⋅x    67⋅x    3         ⎟
⎜──── - ──── + ───, orange⎟
⎝200    300    100        ⎠
test (__main__.MyTestCase) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.044s

OK
%

0 コメント:

コメントを投稿