学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅴ部(“ε-δ”その他)、第16章(複素数)、3(複素数値関数)の練習問題1を求めてみる。
とおく。
このとき、
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import pprint, symbols, cos, sin, exp, I, Derivative
print('1.')
t = symbols('t', real=True)
f = cos(t) + I * sin(t)
class MyTestCase(TestCase):
def test(self):
self.assertEqual(Derivative(exp(f)).doit(),
Derivative(f, t, 1).doit() * exp(f))
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample1.py -v
1.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.006s
OK
%
0 コメント:
コメントを投稿