学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
新装版 数学読本3 (松坂 和夫(著)、岩波書店)の第12章(放物線・だ円・双曲線 - 2次関数)、12.1(放物線・だ円・双曲線)、双曲線の問8の解答を求めてみる。
漸近線。
頂点。
焦点。
概形。
漸近線、頂点、焦点。
概形。
漸近線、頂点、焦点。
概形。
漸近線、頂点、焦点。
概形。
漸近線、頂点、焦点。
概形。
漸近線、頂点、 焦点。
概形。
コード
#!/usr/bin/env python3
import matplotlib.pyplot as plt
from matplotlib import animation
from sympy import sqrt
print('6.')
frames = 50
x0 = 12 / frames
def update(i: int, circle1, center2):
u = -6 + x0 * (i + 1)
v = sqrt(6 ** 2 - u ** 2)
plt.plot([u, 0], [0, v])
plt.plot([u, 0], [0, -v])
x = u / 3
y = 2 * v / 3
circle1.center = x, y
circle2.center = x, -y
fig = plt.gcf()
ax = plt.axes(xlim=(-6, 6), ylim=(-6, 6), aspect='equal')
circle1 = plt.Circle((-2, 0), 0.15)
circle2 = plt.Circle((-2, 0), 0.15)
ax.add_patch(circle1)
ax.add_patch(circle2)
plt.plot([-6, 0], [0, 0])
anim = animation.FuncAnimation(fig,
update,
fargs=(circle1, circle2),
frames=50,
interval=100,
repeat=True)
plt.show()
anim.save('sample6.gif', writer='imagemagick')
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample8.py
8.
(1)
(2)
(3)
(4)
(5)
(6)
%
0 コメント:
コメントを投稿