学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第5章(連立方程式と高次方程式)、問1の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, solve, Rational
print('1.')
x, y, z = symbols('x, y, z')
class TestCube(TestCase):
def test1(self):
self.assertEqual(
solve([x + y + 3 * z - 2,
x + 3 * y + z + 5,
3 * x + y + z + 7]),
{x: -Rational(5, 2), y: -Rational(3, 2), z: 2})
def test2(self):
self.assertEqual(
solve([2 * y - x + 2,
3 * z - x - 1,
4 * x + y - z - 2]),
{x: Rational(4, 5), y: -Rational(3, 5), z: Rational(3, 5)})
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample1.py -v
1.
test1 (__main__.TestCube) ... ok
test2 (__main__.TestCube) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.066s
OK
%
0 コメント:
コメントを投稿