学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第7章(不等式)、2(2次不等式)の問7の解答を求めてみる。
のとき不等式の解は
のとき
のとき、
よって、解は
のとき
のとき
のとき解はない。
コード
#!/usr/bin/env python3
from sympy import pprint, symbols, sqrt, plot
print('7.')
a, x = symbols('a, x', real=True)
f = x ** 2 - (3 + a) * x + 3 * a
g = x ** 2 - a * x - 6 * a ** 2
fas = [2, 3, 4]
gas = [-1, 0, 1]
for i, (o, ts) in enumerate(zip([f, g], [fas, gas]), 1):
print(f'({i})')
p = plot(*[o.subs({a: t}) for t in ts],
(x, -10, 10),
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.save(f'sample7_{i}.png')
p.show()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample7.py
7.
(1)
(2)
%
0 コメント:
コメントを投稿