学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅵ部(多変数の関数)、第20章(合成微分律と勾配ベクトル)、1(合成微分律)の練習問題13の解答を求めてみる。
点 P、 Q は 原点を中心とする半径1の球面上の点なので、
また、
よって、 曲線
は2点 P、 Q を結ぶ、原点を中心とする半径1 の球面上の曲線である。
そして微分可能である。
コード
#!/usr/bin/env python3
from sympy import symbols, Matrix, sqrt
from sympy.plotting import plot3d_parametric_line
print('13.')
t = symbols('t')
p = Matrix([1 / sqrt(2), 1 / sqrt(2 * sqrt(2)), sqrt(2 * sqrt(2))])
q = Matrix([1 / sqrt(2), -1 / sqrt(2 * sqrt(2)), -sqrt(2 * sqrt(2))])
l = p + t * (q - p)
f = l / l.norm()
pp = plot3d_parametric_line(*f, (t, 0, 1), show=True)
pp.save('sample13.png')
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample13.py
13.
%
0 コメント:
コメントを投稿