学習環境
- Surface 3 (4G LTE)、Surface 3 タイプ カバー、Surface ペン(端末)
- Windows 10 Pro (OS)
- 数式入力ソフト(TeX, MathML): MathType
- MathML対応ブラウザ: Firefox、Safari
- MathML非対応ブラウザ(Internet Explorer, Google Chrome...)用JavaScript Library: MathJax
- 参考書籍
線型代数入門(松坂 和夫(著)、岩波書店)の第1章(2次元と3次元の簡単な幾何学)、4(ベクトルの内積)、問6、7、8、9.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, symbols, Matrix, sqrt, Rational a = Matrix([2, 1]) b = Matrix([-1, 3]) c = Matrix([3, 6]) a0 = b - a b0 = c - a pprint(Rational(1, 2) * abs(a0[0] * b0[1] - a0[1] * b0[0]))
入出力結果(Terminal, IPython)
$ ./sample6.py 17/2 $
0 コメント:
コメントを投稿