学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windowsアプリ)
- iPad
- MyScript Nebo - MyScript(iPadアプリ(iOS))
- 参考書籍
新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第8章(円の中にひそむ関数 - 三角関数)、8.2(加法定理)、三角関数の合成の問23の解答を求めてみる。
よって、最大値、 最小値はそれぞれ
よって、 この関数の最大値、最小値はそでれ
各関数のグラフの描画。
コード
#!/usr/bin/env python3
from sympy import pprint, symbols, sin, cos, sqrt, pi, plot, Interval
print('23.')
x = symbols('x', real=True)
fs = [sin(x) + cos(x),
sqrt(3) * sin(x) - cos(x)]
p = plot(sin(x), *fs, sqrt(2), -sqrt(2), 2, -2,
ylim=(-10, 10),
legend=True,
show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
'purple', 'pink', 'gray', 'skyblue', 'yellow']
for s, color in zip(p, colors):
s.line_color = color
p.show()
p.save(f'sample23.png')
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample23.py
23.
%
0 コメント:
コメントを投稿