学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第4章(1次方程式, 2次方程式 )、5(解の係数の関係、2次式の因数分解)、問26の解答を求めてみる。
2つの解を a、 b とし、
とする。
また、解と係数の関係により、
よって、
ゆえに、
または
以上より、
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, solve, plot
print('26.')
x = symbols('x', real=True)
f = x ** 2 - 8 * x + 15
g = x ** 2 + 8 * x + 15
class MyTestCase(TestCase):
def test_plus(self):
x1, x2 = solve(f)
self.assertEqual(abs(x1 - x2), 2)
def test_minus(self):
x1, x2 = solve(g)
self.assertEqual(abs(x1 - x2), 2)
p = plot(f, g,
ylim=(-10, 10),
legend=True,
show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange', 'pink']
for i, s in enumerate(p):
s.line_color = colors[i]
p.show()
p.save('sample26.png')
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample26.py -v
26.
test_minus (__main__.MyTestCase) ... ok
test_plus (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.021s
OK
%
0 コメント:
コメントを投稿