2020年2月12日水曜日

学習環境

代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第4章(1次方程式, 2次方程式 )、3(複素数)の問13の解答を求めてみる。


  1. x 2 + x + 1 = - 1 - 3 i 2 2 + - 1 - 3 i 2 + 1 = - 2 + 2 3 i 4 + - 1 - 3 i 2 + 1 = - 1 + 3 i 2 + - 1 - 3 i 2 + 1 = 0

コード

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, I, sqrt, plot

print('13.')

x = symbols('x')
f = x ** 2 + x + 1


class MyTestCase(TestCase):
    def test(self):
        x0 = (-1 - sqrt(3) * I) / 2
        self.assertEqual(f.subs({x: x0}).expand(), 0)


p = plot(f,
         (x, -5, 5),
         ylim=(0, 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('sample13.png')

if __name__ == "__main__":
    main()

入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))

% ./sample13.py -v
13.
test (__main__.MyTestCase) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.007s

OK
%

0 コメント:

コメントを投稿