学習環境
- Surface、Surface ペン(端末)
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad Pro 10.5 + Apple Pencil
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上)(S.ラング (著)、芹沢 正三 (翻訳)、ちくま学芸文庫)の7章(スカラー積と直交性)、2(正値スカラー積)、練習問題3の解答を求めてみる。
可換であることについて。
分配について。
スカラ一倍について。
よって、 問題の積分で定義された規則はスカラー積である。
(証明終)
コード
Python 3
#!/usr/bin/env python3 from sympy import pprint, symbols, plot, Integral print('3.') x = symbols('x') f = 2 * x + 1 g = -x ** 2 + 1 h = f * g i = Integral(f * g, x, (x, 0, 1)).doit() fs = [f, g, h, i] for f in fs: pprint(f) print() p = plot(*fs, ylim=(-10, 10), show=False, legend=True) colors = ['red', 'green', 'blue', 'brown', 'orange'] for s, color in zip(p, colors): s.line_color = color p.show() p.save('sample3.png')
入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
C:\Users\...>py sample3.py 3. 2⋅x + 1 2 1 - x ⎛ 2⎞ ⎝1 - x ⎠⋅(2⋅x + 1) 13 ── 20 C:\Users\...>
0 コメント:
コメントを投稿