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