2019年5月12日日曜日

学習環境

数学読本〈2〉簡単な関数/平面図形と式/指数関数・対数関数/三角関数 (松坂 和夫(著)、岩波書店)の第5章(関連しながら変化する世界 - 簡単な関数)、5.3(分数関数・無理関数)、y = (ax + b)/(cx + d)のグラフの問30の解答を求めてみる。



    1. y = 3 x x - 1 = 3 x - 1 + 3 x - 1 = 3 x - 1 + 3

      よって漸近線は

      x = 1 , y = 3

      グラフ。


    2. y = 2 x + 1 x + 1 = 2 x + 1 - 1 x + 1 = - 2 x + 1 + 2 x = - 1 , y = 2

    3. y = - 2 x - 2 - 1 x - 2 = - 1 x - 2 - 2 x = 2 , y = - 2

    4. y = - 2 x + 3 2 x + 1 = - 2 x + 1 + 4 2 x + 1 = 4 2 x + 1 - 1 = 2 x + 1 2 - 1 x = - 1 2 , y = - 1

コード

Python 3

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

print('30.')

x = symbols('x')
fs = [3 * x / (x - 1), (2 * x + 1) / (x + 1), (3 - 2 * x) / (x - 2),
      (-2 * x + 3) / (2 * x + 1),
      3, 2, -2, -1]

for i, f in enumerate(fs[:4], 1):
    print(f'({i})')
    pprint(solve(f, dict=True))
    print()

p = plot(*fs,
         ylim=(-10, 10),
         legend=False,
         show=False)

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

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

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

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

C:\Users\...>py sample30.py
30.
(1)
[{x: 0}]

(2)
[{x: -1/2}]

(3)
[{x: 3/2}]

(4)
[{x: 3/2}]


C:\Users\...>

0 コメント:

コメントを投稿