2019年10月18日金曜日

学習環境

微分積分学 (ちくま学芸文庫) (吉田 洋一(著)、筑摩書房)のⅢ.(平均値の定理)、2.(連続関数の加減乗除)、問2.の解答を求めてみる。


  1. φ x > 0 , φ x + h 0

    の場合。

    h 0 φ x + h - φ x = f x + h - f x 0

    また、

    φ x < 0 , φ x + h < 0

    の場合、

    h 0 φ x + h - φ x = 0 - 0 = 0 0

    また、

    φ x = 0 , φ x + h > 0

    の場合、

    h 0 φ x + h - φ x = f x + h - f x 0

    また、

    φ x = 0 , φ x + h < 0

    の場合、

    h 0 φ x + h - φ x = 0 - 0 = 0

    よって、 問1の関数も連続である。

    (証明終)

コード

Python 3

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

print('2.')

x = symbols('x', real=True)
f = x ** 3 - 5 * x ** 2 + x + 5
g = (abs(f) + f) / 2

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


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

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

% ./sample2.py
2.
 3      2        
x  - 5⋅x  + x + 5

 3      2       │ 3      2        │    
x    5⋅x    x   │x  - 5⋅x  + x + 5│   5
── - ──── + ─ + ─────────────────── + ─
2     2     2            2            2

%

0 コメント:

コメントを投稿