2019年8月10日土曜日

学習環境

新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第6章(図形と和也式の関係 - 平面図形と式)、6.4(不等式の表す領域)、連立不等式の表す領域の問36の解答を求めてみる。



    1. x > 0 y - 1 > 0 y > 1

      または

      x < 0 y - 1 < 0 y < 1

      問題の不等式の表す領域の図示。


    2. { x - 2 y 0 3 x - y - 5 0 { y 1 2 x y 3 x - 5 { y 1 2 x y 3 x - 5

      図示。


    3. { x + y - 1 < 0 x 2 + y 2 - 5 > 0 { y < - x + 1 x 2 + y 2 > 5 { y > - x + 1 x 2 + y 2 < 5

      図示。


    4. { x y 0 x 2 + y 2 - 1 0 { x 0 y 0 x 2 + y 2 1 { x 0 y 0 x 2 + y 2 1 { x 0 y 0 x 2 + y 2 1 { x 0 y 0 x 2 + y 2 1

      図示。

コード

Python 3

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

print('36.')

x = symbols('x')
fs = [x / 2, 3 * x - 5]
p = plot(*fs,
         (x, -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('sample36.png')

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

C:\Users\...>py sample36.py
36.

C:\Users\...>

0 コメント:

コメントを投稿