2019年6月21日金曜日

学習環境

解析入門(上) (松坂和夫 数学入門シリーズ 4) (松坂 和夫(著)、岩波書店)の第4章(微分法)、4.2(平均値の定理)、問題2の解答を求めてみる。


  1. f ' x = 3 x 2 + 2 a x + b

    この判別式について。

    D 4 = a 2 - 3 b

    よって、

    a 2 - 3 b > 0

    ならは極大値、極小値を1つずつもつ。

    また、

    a 2 - 3 b 0

    ならば極値をもたない。

    (証明終)

コード

Python 3

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

print('2.')

x, a, b = symbols('x, a, b', real=True)
c = 0
f = x ** 3 + a * x ** 2 + b * x + c
ab = [(2, 1),
      (1, 2)]

f1 = Derivative(f, x, 1)
for o in [f1, f1.doit(), solve(f1.doit(), x)]:
    pprint(o)
    print()
gs = []
for (a0, b0) in ab:
    g = f.subs({a: a0, b: b0})
    gs.append(g)
    g1 = Derivative(g, x, 1)
    for o in [g1, g1.doit(), solve(g1.doit(), x)]:
        pprint(o)
        print()

p = plot(*gs, ylim=(-10, 10), legend=True, show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange', 'purple']

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

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

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

C:\Users\...>py sample2.py
2.
∂ ⎛   2          3⎞
──⎝a⋅x  + b⋅x + x ⎠
∂x                 

               2
2⋅a⋅x + b + 3⋅x 

⎡         __________           __________⎤
⎢        ╱  2                 ╱  2       ⎥
⎢  a   ╲╱  a  - 3⋅b     a   ╲╱  a  - 3⋅b ⎥
⎢- ─ - ─────────────, - ─ + ─────────────⎥
⎣  3         3          3         3      ⎦

d ⎛ 3      2    ⎞
──⎝x  + 2⋅x  + x⎠
dx               

   2          
3⋅x  + 4⋅x + 1

[-1, -1/3]

d ⎛ 3    2      ⎞
──⎝x  + x  + 2⋅x⎠
dx               

   2          
3⋅x  + 2⋅x + 2

[]


C:\Users\...>

0 コメント:

コメントを投稿