2019年10月17日木曜日

学習環境

新装版 数学読本2 (松坂 和夫(著)、岩波書店) の第8章(円の中にひそむ関数 - 三角関数)、8.1(一般角と三角関数)、角とその大きさの問2の解答を求めてみる。



    1. l = 6 · 2 · 1 2 π · π 3 = 2 π cm S = 6 2 π · 1 2 π · π 3 = 6 π cm 2

    2. l = 6 · 3 4 π = 9 2 π S = 1 2 · 9 2 π · 6 = 27 2 π

    3. l = 6 · 1 = 6 S = 1 2 · 6 · 6 = 18

    4. 21 0 = 7 6 π l = 6 · 7 6 π = 7 π 5 = 1 2 · 7 π · 6 = 21 π

コード

Python 3

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

print('2.')

r = 6
x = symbols('x')
f = sqrt(r ** 2 - x ** 2)
thetas = [pi / 3, 3 * pi / 4, 1, 2 * pi * 210 / 360]
fs = [atan(theta) * x for theta in thetas]

p = plot(*[(g, (x, -6, 6)) for g in [f, -f] + fs],
         ylim=(-6, 6),
         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(f'sample2.png')

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

% ./sample2.py
2.
%

0 コメント:

コメントを投稿