2019年8月4日日曜日

学習環境

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



    1. 図示。




    2. x + 1 2 + y + 3 2 - 10 - 15 < 0 x + 1 2 + y + 3 2 < 5 2

      図示。

コード

Python 3

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

print('33.')

x = symbols('x')
fs = [-sqrt(4 - x ** 2),
      sqrt(4 - x ** 2)]


p = plot(*fs,
         (x, -2, 2),
         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('sample33.png')

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

C:\Users\...>py sample33.py
33.

C:\Users\...>

0 コメント:

コメントを投稿