学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
微分積分学 (ちくま学芸文庫) (吉田 洋一(著)、筑摩書房)のⅣ.(積分法)、4.(定積分(幾何学的定義))、問2.の解答を求めてみる。
の場合。
ことから
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, Function, Integral
print('2.')
x, a, b, c = symbols('x, a, b, c')
f = x ** 2 + x + 1
class MyTestCase(TestCase):
def test(self):
self.assertEqual(Integral(f, (x, a, b)).doit(), Integral(
f, (x, a, c)).doit() + Integral(f, (x, c, b)).doit())
if __name__ == '__main__':
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample2.py -v
2.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.026s
OK
%
0 コメント:
コメントを投稿