学習環境
- 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
- 参考書籍
オイラーの贈物―人類の至宝eiπ=-1を学ぶ (吉田 武(著)、東海大学出版会)の第II部(関数の定義(Definitions of Functions))、第6章(指数関数の性質・対数関数(Exponential & Logarithmic Functions))、6.3(指数関数の性質)、6.3.2(ネイピア数)、問題3.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, Rational print('問題3') f = 1 - Rational(1, 3) + Rational(1, 10) - Rational(1, 42) + \ Rational(1, 216) - Rational(1, 1320) + Rational(1, 9360) pprint(f) print(float(f))
入出力結果(Terminal, IPython)
$ ./sample3.py 問題3 1614779 ─────── 2162160 0.7468360343360343 $
0 コメント:
コメントを投稿