学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windowsアプリ)
- iPad
- MyScript Nebo - MyScript(iPadアプリ(iOS))
- 参考書籍
新装版 数学読本3 (松坂 和夫(著)、岩波書店)の第11章(立体的な広がりの中の図形 - 空間図形)、11.1(空間における点・直線・平面、空間の座標)、2点間の距離の問5の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, Matrix, sqrt
print('5.')
class MyTestCubic(TestCase):
def test_1(self):
a = Matrix([3, -1, 4])
b = Matrix([0, 3, -1])
self.assertEqual((b - a).norm(), 5 * sqrt(2))
def test_2(self):
a = Matrix([-5, 1, 2])
b = Matrix([4, -1, -4])
self.assertEqual((b - a).norm(), 11)
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample5.py -v
5.
test_1 (__main__.MyTestCubic) ... ok
test_2 (__main__.MyTestCubic) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.044s
OK
%
0 コメント:
コメントを投稿