学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
続 解析入門 (原書第2版) (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第1章(ベクトル)、7(ベクトル積)の練習問題10の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import Matrix, Function, Derivative
from sympy.abc import t
print('10.')
x = Matrix([Function(f'x{i}')(t) for i in range(1, 4)])
y = Matrix([Function(f'y{i}')(t) for i in range(1, 4)])
class Test(TestCase):
def test(self):
self.assertEqual(
Derivative(x.cross(y), t, 1).doit(),
x.cross(Derivative(y, t, 1).doit()) +
Derivative(x, t, 1).doit().cross(y)
)
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample10.py -v
10.
test (__main__.Test) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.047s
OK
%
0 コメント:
コメントを投稿