✔ 最佳答案
The answers below assumes that the angle "X" is measured in RADIANS, which is a real number, typically between 0 and 2*pi, with 2*Pi = 360 degree.
You need the transformation from degrees to radian, using the following:
X is degree, Y is radians
X/360 = Y/2*pi
So Y = pi*X/180
Then we can apply the Taylor series:
sin(Y) = Y-Y^3/3! + Y^5/5! - Y^7/7! + ...
cos(Y)= 1-Y^2/2! + Y^4/4! - Y^6/6! + ...
tan(Y) = sin(Y)/cos(Y)
This is how your calculator actually calculate the numerical value of sin/cos/tan, where the sum is truncated when the accuracy is high enough (the additional term does not change the answer significantly)