참고 영상 |
[GIF image (523.48 KB)] |
y / r = sin(θ) x / r = cos(θ) y / x = tan(θ)
기호 표기 | 정의 식 | 비고 |
sin(θ) | y / r | sine, 사인 |
cos(θ) | x / r | cosine, 코사인, '여각(餘角, complementary angle)의 sin' |
tan(θ) | sin(θ) / cos(θ) = y / x | tangent, 탄젠트 |
csc(θ) | 1 / sin(θ) = r / y | cosecant, 코시컨트, sin(θ)의 역수 |
sec(θ) | 1 / cos(θ) = r / x | secant, 시컨트, cos(θ)의 역수 |
cot(θ) | 1 / tan(θ) = x / y | cotangent, 코탄젠트, tan(θ)의 역수 |
arcsin(x) | x = sin(θ)일 때 arcsin(x) = θ | 아크 사인, x = sin(θ)의 역함수 |
arccos(x) | x = cos(θ)일 때 arccos(x) = θ | 아크 코사인, x = cos(θ)의 역함수 |
arctan(x) | x = tan(θ)일 때 arctan(x) = θ | 아크 탄젠트, x = tan(θ)의 역함수 |
60분법 | 0˚ | 30˚ | 45˚ | 60˚ | 90˚ | 180˚ | 270˚ | 360˚ |
호도법 | 0 | π / 6 | π / 4 | π / 3 | π / 2 | π | 3π / 2 | 2π |
sin(x + y) = sin(x) * cos(y) + cos(x) * sin(y) sin(x - y) = sin(x) * cos(y) - cos(x) * sin(y) cos(x + y) = cos(x) * cos(y) - sin(x) * sin(y) cos(x - y) = cos(x) * cos(y) + sin(x) * sin(y) tan(x + y) = (tan(x) + tan(y)) / (1 - tan(x) * tan(y)) tan(x - y) = (tan(x) - tan(y)) / (1 + tan(x) * tan(y))
sin(2 * x) = 2 * sin(x) * cos(x) cos(2 * x) = cos²(x) - sin²(x) = 2 * cos²(x) - 1 = 1 - 2 * sin²(x) tan(2 * x) = (2 * tan(x)) / (1 - tan²(x))
sin²(x / 2) = (1 - cos(x)) / 2 cos²(x / 2) = (1 + cos(x)) / 2 tan²(x / 2) = (1 - cos(x)) / (1 + cos(x))
sin(-θ)=-sinθ, cos(-θ)=cosθ, tan(-θ)=-tanθ sin²θ+cos²θ=1, sec²θ-tan²θ=1, csc²θ-cot²θ=1 // 사인의 제곱과 코사인의 제곱의 합은 1 (피타고라스의 정리에 의한 항등식) sin(π/2-θ)=cosθ, sin(π/2+θ)=cosθ, sin(θ±π/2)=±cosθ cos(π/2-θ)=sinθ, cos(π/2+θ)=-sinθ, cos(θ±π/2)=Ŧsinθ sin(π-θ)=sinθ, sin(π+θ)=-sinθ, sin(θ±π)=-sinθ cos(π-θ)=-cosθ, cos(π+θ)=-cosθ, cos(θ±π)=-cosθ sin(α±β)=sinαcosβ±cosαsinβ, cos(α±β)=cosαcosβŦsinαsinβ tan(α+β)=tanα+tanβ/1-tanαtanβ, tan(α-β)=tanα-tanβ/1+tanαtanβ sin2θ=2sinθcosθ cos2θ=cos²θ-sin²θ=2cos²θ-1=1-2sin²θ, tan2θ=2tanθ/1-tan²θ sin²θ/2=1-cosθ/2, cos²θ/2=1+cosθ/2, tan²θ/2=1-cosθ/1+cosθ sinαcosβ=1/2{sin(α+β)+sin(α-β)} cosαcosβ=1/2{cos(α+β)+cos(α-β)} sinαsinβ=-1/2{cos(α+β)-cos(α-β)} sinα+sinβ=2sin(α+β/2)cos(α-β/2) sinα-sinβ=2cos(α+β/2)sin(α-β/2) cosα+cosβ=2cos(α+β/2)cos(α-β/2) cosα-cosβ=-2sin(α+β/2)sin(α-β/2)
import numpy as np import matplotlib.pyplot as plt s_x = np.arange(-4, 4, 0.1) s_y1 = np.sin(s_x) s_y2 = np.cos(s_x) s_y3 = np.tan(s_x) plt.figure(figsize=(16, 10)) plt.plot(s_x, s_y1, 'r-', label='sin') plt.plot(s_x, s_y2, 'b-', label='cos') plt.plot(s_x, s_y3, 'm--', label='tan') # 여기서 tan 는 'mo' 속성으로 그리는게 더 좋을수도... plt.xlabel('x') plt.ylabel('y') plt.ylim(-2.0, 2.0) plt.axvline(x=0, color='k') plt.axhline(y=0, color='k') plt.title('sin/cos/tan function') plt.legend() plt.show()
import numpy as np import matplotlib.pyplot as plt x = np.arange(-20, 20, 0.1) y = np.sin(x) z = np.cos(x) fig = plt.figure(figsize=(16, 10)) ax = fig.add_subplot(111, projection='3d') ax.set_title("Helix test", size = 20) ax.set_xlabel("x", size = 14) ax.set_ylabel("y", size = 14) ax.set_zlabel("z", size = 14) ax.plot(x, y, z)
[PNG image (84.28 KB)] |
이미지 출처: https://www.youtube.com/watch?v=KeYDh9E0jh8 '광속의 신비 — 광속은 왜 불변일까?' 영상에서 16:12 시점 |
x' = (x * sin(θ)) - (y * cos(θ)) y' = -((x * cos(θ)) + (y * sin(θ)))
y' = (y * sin(θ)) - (z * cos(θ)) z' = -((y * cos(θ)) + (z * sin(θ)))
* z' = (z * sin(θ)) - (x * cos(θ)) * x' = -((z * cos(θ)) + (x * sin(θ)))
[PNG image (231.08 KB)] |
이미지 출처(wikipedia)(https://en.wikipedia.org/wiki/Latitude#/media/File:Latitude_and_longitude_graticule_on_a_sphere.svg) |
π rad : 180˚ = y rad : x˚ π rad * x˚ = 180˚* y rad y rad = π rad * x˚/ 180˚ 즉, radianY = degreeX * π / 180
latitudeA_radian = latitudeA_degree * π / 180.0 latitudeB_radian = latitudeB_degree * π / 180.0
longitudeDelta_radian = (longitudeA_degree - longitudeB_degree) * π / 180.0
distance = (sin(latitudeA_radian) * sin(latitudeB_radian)) + (cos(latitudeA_radian) * cos(latitudeB_radian) * cos(longitudeDelta_radian))
distance_meter = '지구의 둘레' * arccos(distance) ≒ 6371000m * arccos(distance)
latitudeA_radian = latitudeA_degree * π / 180.0 = 37.566788 * π / 180.0 ≒ 0.6556641399986955 latitudeB_radian = latitudeB_degree * π / 180.0 = 35.180202 * π / 180.0 ≒ 0.6140103564166941 longitudeDelta_radian = (longitudeA_degree - longitudeB_degree) * π / 180.0 = (126.978039 - 129.075388) * π / 180.0 ≒ -0.036605645613410696 distance = (sin(latitudeA_radian) * sin(latitudeB_radian)) + (cos(latitudeA_radian) * cos(latitudeB_radian) * cos(longitudeDelta_radian)) ≒ (0.6096858037960656 * 0.5761499252816438) + (0.7926431862127784 * 0.8173440301353869 * 0.9993300881649553) ≒ 0.9986985960415217 distance_meter = '지구의 둘레' * arccos(distance) ≒ 6371000m * arccos(distance) ≒ 6371000m * arccos(0.9986985960415217) ≒ 6371000m * 0.051023256106557204 ≒ 325069.1672582486m ≒ 약 325km
3.1415926535 8979323846 2643383279 5028841971 6939937510 5820974944 5923078164 0628620899 8628034825 3421170679 8214808651 3282306647 0938446095 5058223172 5359408128 4811174502 8410270193 8521105559 6446229489 5493038196 4428810975 6659334461 2847564823 3786783165 2712019091 4564856692 3460348610 4543266482 1339360726 0249141273 7245870066 0631558817 4881520920 9628292540 9171536436 7892590360 0113305305 4882046652 1384146951 9415116094 3305727036 5759591953 0921861173 8193261179 3105118548 0744623799 6274956735 1885752724 8912279381 8301194912 9833673362 4406566430 8602139494 6395224737 1907021798 6094370277 0539217176 2931767523 8467481846 7669405132 0005681271 4526356082 7785771342 7577896091 7363717872 1468440901 2249534301 4654958537 1050792279 6892589235 4201995611 2129021960 8640344181 5981362977 4771309960 5187072113 4999999837 2978049951 0597317328 1609631859 5024459455 3469083026 4252230825 3344685035 2619311881 7101000313 7838752886 5875332083 8142061717 7669147303 5982534904 2875546873 1159562863 8823537875 9375195778 1857780532 1712268066 1300192787 6611195909 2164201989 ...
둔각 삼각형에서, 둔각을 마주하는 변 위의 정사각형은 둔각을 이루는 변들 위의 정사각형들(의 합)보다 수직 (직선)이 내려진 둔각의 변, 그리고 둔각을 향한 수직 (직선)에 의해 (삼각형의) 밖에서 절단된 (직선)이 이루는 (직사각형)의 두 배만큼 많다. Proposition 12† In obtuse-angled triangles, the square on the side subtending the obtuse angle is greater than the (sum of the) squares on the sides containing the obtuse angle by twice the (rectangle) contained by one of the sides around the obtuse angle, to which a perpendicular (straight-line) falls, and the (straight-line) cut off outside (the triangle) by the perpendicular (straight-line) towards the obtuse angle.
예각 삼각형에서, 예각을 마주하는 변 위의 정사각형은 예각을 이루는 변들 위의 정사각형들(의 합)보다 수직 (직선)이 내려진 예각의 변, 그리고 예각을 향하는 수직 (직선)에 의해 (삼각형의) 안에서 절단된 (직선)이 이루는 (직사각형)의 두 배만큼 적다. Proposition 13† In acute-angled triangles, the square on the side subtending the acute angle is less than the (sum of the) squares on the sides containing the acute angle by twice the (rectangle) contained by one of the sides around the acute angle, to which a perpendicular (straight-line) falls, and the (straight-line) cut off inside (the triangle) by the perpendicular (straight-line) towards the acute angle.
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
참고 영상 |
시공간 축의 변환, 로렌츠 변환, 허수등... |