2020年2月29日土曜日

学習環境

解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅵ部(多変数の関数)、第18章(ベクトルの微分)、1(微分係数)の練習問題19の解答を求めてみる。


  1. 3 · 2 t 2 - 14 1 - t + 3 + t 2 - 10 = 0 7 t 2 + 14 t - 21 = 0 t 2 + 2 t - 3 = 0 t + 3 t - 1 = 0 t = 1 , - 3

    よって、求める曲線と平面の交点は

    2 , 0 , 4 18 , 4 , 12

コード

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, solveset
from sympy.plotting import plot3d_parametric_line, plot3d

print('19.')

t, x, y = symbols('t, x, y', real=True)
x0 = 2 * t ** 2
y0 = 1 - t
z0 = 3 + t ** 2


class MyTestCase(TestCase):
    def test(self):
        ts = solveset(3 * x0 - 14 * y0 + z0 - 10, t)
        self.assertEqual(ts, {1, -3})


p = plot3d_parametric_line(
    2 * t ** 2, 1 - t, 3 + t ** 2,
    (t, -5, 2),
    legend=True, show=False)

p.append(plot3d(-(3 * x - 14 * y - 10), show=False)[0])

colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

for o, color in zip(p, colors):
    o.line_color = color

p.show()
p.save('sample19.png')

if __name__ == "__main__":
    main()

入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))

% ./sample19.py -v
19.
test (__main__.MyTestCase) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.033s

OK
%

0 コメント:

コメントを投稿