2020年1月11日土曜日

学習環境

解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅵ部(多変数の関数)、第17章(ベクトル)、4(ベクトルのノルム)の練習問題10の解答を求めてみる。


  1. A = 1 , 0 B = 0 , 1 C = 0 , 2

    のとき、

    A · B = 0 A · C = 0

    よって、

    A · B = A · C

    であるが、

    B C

    である。

コード

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, Matrix

print('10.')

a = Matrix([1, 0])
b = Matrix([0, 1])
c = Matrix([0, 2])


class MyTestCase(TestCase):
    def test1(self):
        self.assertEqual(a.dot(b), a.dot(c))

    def test2(self):
        self.assertNotEqual(a, b)


if __name__ == '__main__':
    main()

入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))

% ./sample10.py -v
10.
test1 (__main__.MyTestCase) ... ok
test2 (__main__.MyTestCase) ... ok

----------------------------------------------------------------------
Ran 2 tests in 0.001s

OK
%

0 コメント:

コメントを投稿