学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門(上) (松坂和夫 数学入門シリーズ 4) (松坂 和夫(著)、岩波書店)の第7章(積分法)、7.3(不定積分、広義積分)、問題1の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import pprint, symbols, Integral, Derivative, pi, oo, sqrt, plot
print('1.')
x = symbols('x', real=True)
a = symbols('x', positive=True)
class MyTestCase(TestCase):
def test_arcsin(self):
self.assertEqual(
Integral(1 / sqrt(a ** 2 - x ** 2), (x, 0, a)).doit(), pi / 2)
def test_arctan(self):
self.assertEqual(Integral(1 / (a ** 2 + x ** 2),
(x, -oo, oo)).doit(), pi / a)
p = plot((1 / sqrt(1 - x ** 2), (x, -0.9, 0.9)),
(1 / 1 + x ** 2, (x, -2, 2)),
ylim=(0, 4),
show=False,
legend=True)
colors = ['red', 'green', 'blue', 'brown', 'orange',
'purple', 'pink', 'gray', 'skyblue', 'yellow']
for o, color in zip(p, colors):
o.line_color = color
p.show()
p.save('sample1.png')
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample1.py -v
1.
test_arcsin (__main__.MyTestCase) ... ok
test_arctan (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.335s
OK
%
0 コメント:
コメントを投稿