学習環境
- 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
- 参考書籍
数学読本〈5〉微分法の応用/積分法/積分法の応用/行列と行列式(松坂 和夫(著)、岩波書店)の第20章(面積、体積、長さ - 積分法の応用)、20.2(体積)、体積の公式、問17.を取り組んでみる。
ABの中点を原点、点A(-a, 0)、点B(a, 0)、P(x, 0)とする。
△PQRの面積。
求める体積。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, symbols, Integral, Rational print('17.') x, a = symbols('x a') f = Rational(1, 2) * (a ** 2 - x ** 2) I = Integral(f, (x, -a, a)) for t in [I, I.doit()]: pprint(t) print()
入出力結果(Terminal, Jupyter(IPython))
$ ./sample17.py 17. a ⌠ ⎮ ⎛ 2 2⎞ ⎮ ⎜a x ⎟ ⎮ ⎜── - ──⎟ dx ⎮ ⎝2 2 ⎠ ⌡ -a 3 2⋅a ──── 3 $
0 コメント:
コメントを投稿