2019年5月5日日曜日

学習環境

数学読本〈2〉簡単な関数/平面図形と式/指数関数・対数関数/三角関数 (松坂 和夫(著)、岩波書店)の第5章(関連しながら変化する世界 - 簡単な関数)、5.2(2次関数)、グラフの応用と補充問題の問25の解答を求めてみる。



    1. y = - 2 x + 3 - 2 x + 3 0 x 3 2 0 x 3 2 2 x 2 + y 2 = 2 x 2 + - 2 x + 3 2 = 2 x 2 + 4 x 2 - 12 x + 9 = 6 x 2 - 12 x + 9 = 6 x - 1 2 + 3

      よって、 最大値、最小値はそれぞれ

      9 x = 0 3 x = 1

    2. 2 x 2 - - 2 x + 3 2 = 2 x 2 - 4 x 2 + 12 x - 9 = - 2 x 2 + 12 x - 9 = - 2 x - 3 2 + 9

      よって、求める最大値、最小値はそれでれ、

      - 2 · 9 4 + 12 · 3 2 - 9 = - 9 2 + 18 - 9 = - 9 + 18 2 = 9 2 x = 3 2 - 9 x = 0

コード

Python 3

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

print('25.')

x = symbols('x')
y = -2 * x + 3
f = 2 * x ** 2 + y ** 2
g = 2 * x ** 2 - y ** 2
p = plot(f, 9, 3, g, Rational(9, 2), -9,
         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('sample25.png')

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

C:\Users\...>py sample25.py
25.

C:\Users\...>

0 コメント:

コメントを投稿