I want some intuitive understanding of the trigonometric functions. One way is to understand ways they can be computed when just an angle in degrees or radians is given. The sine of an angle is defined as the ratio of two sides of a right triangle. If this is the case then I can't find a way to compute it without requiring sine.
To compute the sine of an angle:
1) Create right triangles.
2) Compute their angles.
3) Once a right triangle with the correct angle (or close enough) is found. Compute the opposite/hypotenuse ratio.
The problem: Step 2 requires computing angles of right triangles. The way to do this appears to be to compute the opposite/hypotenuse ratio and use the inverse of sine to find the angle. The inverse of sine seems to require similar steps only this time find a triangle with the correct ratio, instead of correct angle, and then compute the angle of that triangle which seems to be to use...the inverse of sine.
How do I compute the sine of an angle without requiring a sine function within the sine function I'm trying to create?
If one reduces it to the most simple form, an angle is a point on the unit circle. In general it is an equivalence class of pairs of rays originating from the same point, after rotation, the first ray can be made horizontal, the originating point the origin and the second ray is defined by one point on it, which can be chosen as a point on the unit circle.
The coordinates $(x,y)=(c,s)$ on the unit circle are thus the primary object.
To give a measure to the angle, one divides the unit circle into equal parts. This equal-part division is trivial for 4 and 6, 12, 24... parts, and still an easy geometric construction for 5 parts. We know for example that the point $(\tfrac12\sqrt3, \tfrac12)$ is the next point above $(1,0)$ in the division into 12 parts. Now the question is how to mark these points. One system is to mark the full circle as $360°$, one other system by arc length on the unit circle.
Since we can construct with ease the angle for $30°$, one can approximate every other angle of $a°$ by expressing the fraction $a/30$ in binary and proceed by angle bisections.
In the opposite way, every point of the circle is in one of the 12 segments of $30°$ and by angle bisection one can narrow down the angle segment of that point to any desired precision.
And now one may ask for the analytical formula connecting the angle number and the coordinates on the unit circle, which leads to the trigonometric functions and the natural role of the arc length as their argument.
The half angle at the bisector for a point $(c,s)$ in the first or second quadrant on the unit circle is $\sqrt{\frac{1+c}2},\sqrt{\frac{1-c}2}$. Thus for instance the point for $15°$ is the bisector for the angle $30°$ is given as $$ c_{15°}=\frac12\sqrt{2+\sqrt3}=\frac1{2\sqrt{2}}\sqrt{3+2\sqrt3+1}=\frac{\sqrt3+1}{2\sqrt{2}} $$ and $$ s_{15°}=\frac12\sqrt{2-\sqrt3}=\frac1{2\sqrt{2}}\sqrt{3-2\sqrt3+1}=\frac{\sqrt3-1}{2\sqrt{2}} $$
Multiples of an angle can be computed as the first rows of the powers of the rotation matrices $$ \begin{bmatrix}c&-s\\s&c\end{bmatrix}^k $$