学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅵ部(多変数の関数)、第18章(ベクトルの微分)、1(微分係数)の練習問題24の解答を求めてみる。
よって、 曲線と速度ベクトルの余弦は、
よって、 余弦は定数である。
.
(証明終)
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, Matrix, Derivative
from sympy.plotting import plot_parametric
print('24.')
t, a, b = symbols('t, a, b', real=True)
x = Matrix([2 * t / (1 + t ** 2),
(1 - t ** 2) / (1 + t ** 2),
1])
x1 = Derivative(x, t, 1).doit()
class MyTestCase(TestCase):
def test(self):
self.assertEqual(x.dot(x1).simplify(), 0)
p = plot_parametric(*x[:2],
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('sample24.png')
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample24.py -v
24.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.327s
OK
%
0 コメント:
コメントを投稿