2020年4月27日月曜日

学習環境

新装版 数学読本3 (松坂 和夫(著)、岩波書店)の第11章(立体的な広がりの中の図形 - 空間図形)、11.1(空間における点・直線・平面、空間の座標)、2点間の距離の問5の解答を求めてみる。



    1. A B = 3 2 + 4 2 + 5 2 = 9 + 16 + 25 = 5 2

    2. 9 2 + 2 2 + 6 2 = 81 + 4 + 36 = 11

コード

#!/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 コメント:

コメントを投稿