2020年6月22日月曜日

学習環境

続 解析入門 (原書第2版) (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第1章(ベクトル)、6(平面)の練習問題3、4の解答を求めてみる。


  1. ( x + 5 ) - ( y - 3 ) = 0 y = x + 8

  2. - 5 ( x - 3 ) + 4 ( y - 2 ) = 0 - 5 x + 4 y + 7 = 0

コード

#!/usr/bin/env python3
from sympy import plot, Rational
from sympy.abc import x

print('3, 4.')

ys = [x + 8,
      (5 * x - 7) / 4]

p = plot(*ys,
         -x, -Rational(4, 5) * x,
         3, 2,
         (x, -10, 10),
         ylim=(-10, 10),
         legend=True,
         show=False)

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

for o, color in zip(p, colors):
    o.line_color = color
p.save(f'sample3.png')
p.show()

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

% ./sample3.py
3, 4.
%

0 コメント:

コメントを投稿