学習環境
- 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
- 参考書籍
線型代数入門(松坂 和夫(著)、岩波書店)の第1章(2次元と3次元の簡単な幾何学)、10(空間における直線・平面の方程式)、問7.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, symbols print('7.') x, y, z = symbols('x y z') eq = 9 * x - 23 * y - 20 * z - 95 pprint(eq) for (x0, y0, z0) in [(0, 0, 0), (1, 3, -3), (6, -2, 5)]: pprint(eq.subs({x: 0 + x0, y: -5 + y0, z: 1 + z0}) == 0)
入出力結果(Terminal, IPython)
$ ./sample7.py 7. 9⋅x - 23⋅y - 20⋅z - 95 True True True $
0 コメント:
コメントを投稿