2019年7月31日水曜日

学習環境

新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第6章(図形と和也式の関係 - 平面図形と式)、6.3(円と軌跡)、特殊な2次方程式の表す曲線の問31の解答を求めてみる。



    1. x y - 2 x + 3 y = 5 x y - 2 x + 3 y - 2 · 3 = 5 - 2 · 3 x + 3 y - 2 = - 1 y - 2 = - 1 x + 3 y = - 1 x + 3 + 2

      よって、問題の方程式が表す図形は、

      x = - 3 y = 2

      を漸近線とする直角双曲 線である。


    2. x y - 2 x + 3 y = 7 x + 3 y - 2 + 6 = 7 y - 2 = 1 x + 3 y = 1 x + 3 + 2

      よって、

      x = - 3 y = 2

      と漸近線とする直有双曲線。

      x y - 2 x + 3 y = 6 x + 3 y - 2 + 6 = 6 x + 3 y - 2 = 0

      よって、直線

      x = - 3 y = 2

コード

Python 3

#!/usr/bin/env python3
from sympy import pprint, symbols, plot, solve

print('31.')

x, y = symbols('x, y')
eqs = [x * y - 2 * x + 3 * y - 5,
       x * y - 2 * x + 3 * y - 7,
       x * y - 2 * x + 3 * y - 6]
fs = []
for i, eq in enumerate(eqs, 1):
    print(f'({i})')
    s = solve(eq, y)
    pprint(s)
    fs += s
    print()

pprint(solve(eqs[2]))
print()

p = plot(*fs, 2,
         ylim=(-10, 10),
         legend=True,
         show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

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

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

入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))

C:\Users\...>py sample31.py
31.
(1)
⎡2⋅x + 5⎤
⎢───────⎥
⎣ x + 3 ⎦

(2)
⎡2⋅x + 7⎤
⎢───────⎥
⎣ x + 3 ⎦

(3)
[2]

[{x: -3}, {y: 2}]


C:\Users\...>

0 コメント:

コメントを投稿