学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
続 解析入門 (原書第2版) (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第1章(ベクトル)、6(平面)の練習問題9の解答を求めてみる。
求める問題の2つのベクトルに直交するベクトルを
とおくと、
よって、 直交するベクトルの 1つは
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import solve, Matrix
from sympy.abc import b, c, t
from sympy.plotting import plot3d_parametric_line
print('9.')
class Test(TestCase):
def test1(self):
x = Matrix([3, b, c])
self.assertEqual(
solve([x.dot(Matrix([1, 2, -3])),
x.dot(Matrix([2, -1, 3]))]),
{b: -9, c: -5}
)
def test2(self):
x = Matrix([1, b, c])
self.assertEqual(
solve([x.dot(Matrix([-1, 3, 2])),
x.dot(Matrix([2, 1, 1]))]),
{b: 5, c: -7},
)
p = plot3d_parametric_line(*[(a * t, b * t, c * t, (t, 0, 1))
for a, b, c in [(1, 2, -3),
(2, -1, 3),
(3, -9, -5),
(-1, 3, 2),
(2, 1, 1),
(1, 5, -7)]],
legend=True,
show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
'purple', 'pink', 'gray', 'skyblue', 'yellow']
for o, color in zip(p, colors):
o.line_color = color
p.show()
p.save('sample9.png')
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample9.py -v
9.
test1 (__main__.Test) ... ok
test2 (__main__.Test) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.027s
OK
%
0 コメント:
コメントを投稿