学習環境
- Surface Go、タイプ カバー、ペン(端末)
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad Pro + Apple Pencil
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上)(S.ラング (著)、芹沢 正三 (翻訳)、ちくま学芸文庫)の3章(行列)、2(1次方程式)、練習問題5の解答を求めてみる。
とする。
このとき、
問題の仮定より、実数体上で1次独立なので、
よって、
ゆえに、複素数体の上で1次独立である。
コード
Python 3
#!/usr/bin/env python3 from sympy import pprint, symbols, solve, Matrix print('5.') a, b, c, d = symbols('a, b, c, d', real=True) e, f, g, h = symbols('e, f, g, h', imag=True) A1 = Matrix([5, 0, 0, 0, 0]) A2 = Matrix([0, 1, 0, 0, 0]) A3 = Matrix([0, 0, 4, 0, 0]) A4 = Matrix([0, 0, 0, 2, 0]) pprint(solve((a * A1 + b * A2 + c * A3 + d * A4, e * A1 + f * A2 + g * A3 + h * A4), dict=True))
入出力結果(cmd(コマンドプロンプト)、Terminal、Jupyter(IPython))
$ python3 sample5.py 5. [{a: 0, b: 0, c: 0, d: 0, e: 0, f: 0, g: 0, h: 0}] $
0 コメント:
コメントを投稿