学習環境
- 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
- 参考書籍
ラング線形代数学(上)(S.ラング (著)、芹沢 正三 (翻訳)、ちくま学芸文庫)の1章(R^n におけるベクトル)、5(直線と平面)、練習問題21、22.を取り組んでみる。
3分の1。
3分の2の点。
コード(Emacs)
Python 3
#!/usr/bin/env python3
from sympy import pprint, symbols, Matrix, Rational
print('21.')
X = Matrix(symbols('x y z'))
P = Matrix([1, 3, -1])
Q = Matrix([-4, 5, 2])
t = symbols('t')
X = P + t * (Q - P)
for t0 in [Rational(1, 2), Rational(1, 3), Rational(2, 3)]:
pprint(X.subs({t: t0}).T)
print()
入出力結果(Terminal, Jupyter(IPython))
$ ./sample21.py 21. [-3/2 4 1/2] [-2/3 11/3 0] [-7/3 13/3 1] $
0 コメント:
コメントを投稿