学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第4章(1次方程式, 2次方程式 )、5(解の係数の関係、2次式の因数分解)、問27の解答を求めてみる。
の解は
よって、
である。
よって、 求める
の解は、
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, solveset, plot, sqrt
print('27.')
x = symbols('x', real=True)
b = 9
c = 18
f = x ** 2 + b * x - c
g = x ** 2 + b * x + c
class MyTestCase(TestCase):
def test1(self):
self.assertEqual(solveset(f, x),
{(-9 + sign * 3 * sqrt(17)) / 2 for sign in [-1, 1]})
def test2(self):
self.assertEqual(solveset(g, x), {-6, -3})
p = plot(f, g,
(x, -20, 20),
ylim=(-20, 20),
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('sample27.png')
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample27.py -v
27.
test1 (__main__.MyTestCase) ... ok
test2 (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.058s
OK
%
0 コメント:
コメントを投稿