学習環境
- Surface 3 (4G LTE)、Surface 3 タイプ カバー、Surface ペン(端末)
- Windows 10 Pro (OS)
- 数式入力ソフト(TeX, MathML): MathType
- MathML対応ブラウザ: Firefox、Safari
- MathML非対応ブラウザ(Internet Explorer, Microsoft Edge, Google Chrome...)用JavaScript Library: MathJax
- 参考書籍
解析入門〈2〉(松坂 和夫(著)、岩波書店)の第9章(関数列と関数級数)、9.3(複素整級数(指数関数・三角関数再論))、問題1.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, symbols, exp, pi, Rational, I print('1.') xs = [Rational(1, 2) * pi * I, -pi * 1j, Rational(3, 4) * pi * I, -Rational(1, 3) * pi * I] for x in xs: pprint(exp(x).as_real_imag())
入出力結果(Terminal, IPython)
$ ./sample1.py 1. (0, 1) (-1, 0) ⎛-√2 √2⎞ ⎜────, ──⎟ ⎝ 2 2 ⎠ ⎛ -√3 ⎞ ⎜1/2, ────⎟ ⎝ 2 ⎠ $
0 コメント:
コメントを投稿