学習環境
- Surface 3 (4G LTE)、Surface 3 タイプ カバー、Surface ペン(端末)
- Windows 10 Pro (OS)
- 数式入力ソフト(TeX, MathML): MathType
- MathML対応ブラウザ: Firefox、Safari
- MathML非対応ブラウザ(Internet Explorer, Microsoft Edge, Google Chrome...)用JavaScript Library: MathJax
- 参考書籍
解析入門〈2〉(松坂 和夫(著)、岩波書店)の第10章(n次元空間)、10.2(ベクトル空間)、問題3-(b).を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, symbols, Matrix, solve print('3-(b).') a = Matrix(symbols('a1 a2 a3')) b = Matrix(symbols('b1 b2 b3')) c = Matrix(symbols('c1 c2 c3')) x1, x2, x3 = symbols('x1 x2 x3', nonzero=True) eq = x1 * a + x2 * b + x3 * c pprint(a.cross(b).dot(c)) pprint(eq.T)
入出力結果(Terminal, Jupyter(IPython))
$ ./sample3_b.py 3-(b). c₁⋅(a₂⋅b₃ - a₃⋅b₂) + c₂⋅(-a₁⋅b₃ + a₃⋅b₁) + c₃⋅(a₁⋅b₂ - a₂⋅b₁) [a₁⋅x₁ + b₁⋅x₂ + c₁⋅x₃ a₂⋅x₁ + b₂⋅x₂ + c₂⋅x₃ a₃⋅x₁ + b₃⋅x₂ + c₃⋅x₃] $
0 コメント:
コメントを投稿