2019年8月25日日曜日

学習環境

解析入門(上) (松坂和夫 数学入門シリーズ 4) (松坂 和夫(著)、岩波書店)の第5章(各種の初等関数)、5.3(三角関数)、問題2の解答を求めてみる。


  1. sin π - θ = sin - θ + π = - sin - θ = sin θ cos π - θ = cos - θ + π = - cos - θ = - cos θ

コード

Python 3

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import pprint, symbols, sin, cos, pi, plot

print('2.')


class MyTest(TestCase):
    def setUp(self):
        pass

    def tearDown(self):
        pass

    def test(self):
        theta = symbols('θ')
        self.assertEqual(sin(pi - theta), sin(theta))
        self.assertEqual(cos(pi - theta), -cos(theta))


if __name__ == '__main__':
    theta = symbols('θ')
    p = plot(sin(pi - theta), -cos(pi - theta),
             (theta, -5, 5),
             ylim=(-5, 5),
             show=False,
             legend=True)

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

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

    p.show()
    p.save('sample2.png')
    main()

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

C:\Users\...>py sample2.py
2.
.
----------------------------------------------------------------------
Ran 1 test in 0.000s

OK

C:\Users\...>

0 コメント:

コメントを投稿