Trigonometry

Unit Circle Visualizer

Convert an angle into radians and inspect sine, cosine, tangent, and quadrant behavior.

Normalized Angle

45.000 deg

Radians

0.78539816

sin(theta)

0.70710678

cos(theta)

0.70710678

tan(theta)

1.00000000

The Unit Circle as an Engineering Reference

The unit circle is a circle with radius one centered at the origin. It connects angles to coordinates: for an angle theta measured from the positive x-axis, the point on the circle has coordinates (cos theta, sin theta). This relationship is the foundation for trigonometry, AC circuit analysis, rotating machinery, signal processing, robotics, vibration analysis, and graphics. Tangent is the ratio sin theta / cos theta when cosine is not zero.

Engineers use the unit circle because sinusoidal behavior appears everywhere. A rotating phasor projects onto an axis as a sine wave. A mass-spring system oscillates. AC voltage and current can be represented as rotating vectors. A robot joint angle maps into x and y coordinates. A digital oscillator uses sine and cosine samples. The unit circle gives a compact geometric way to reason about signs, periodicity, phase, and amplitude.

Manual Calculation Steps

Start by converting degrees to radians when needed. Radians = degrees x pi / 180. A 45 degree angle is pi / 4 radians, about 0.785398. A 90 degree angle is pi / 2. A 180 degree angle is pi. Trigonometric functions in most programming languages expect radians, so this conversion is a common source of bugs. If a program computes the sine of 90 and returns 0.894, it probably interpreted 90 as radians rather than degrees.

Next identify the reference angle and quadrant. At 45 degrees in quadrant I, sine and cosine are both sqrt(2) / 2, about 0.7071. At 135 degrees in quadrant II, the reference angle is still 45 degrees, but cosine is negative and sine is positive. At 225 degrees, both are negative. At 315 degrees, cosine is positive and sine is negative. The quadrant determines signs, while the reference angle determines magnitudes.

Axes and Undefined Tangent

Axis angles deserve special attention. At 0 degrees, the point is (1, 0), so sine is 0 and cosine is 1. At 90 degrees, the point is (0, 1), so sine is 1 and cosine is 0. Tangent is undefined at 90 and 270 degrees because it divides by cosine. In numerical software, cosine may be a tiny floating-point value near zero rather than exactly zero, so tangent can appear as an enormous number. Treat those angles as vertical asymptotes.

Periodicity is another essential idea. Adding 360 degrees or 2 pi radians returns to the same point on the circle. An angle of 405 degrees is equivalent to 45 degrees for sine and cosine. Normalizing angles into the range 0 to 360 degrees makes quadrant interpretation easier, but the original angle can still matter when counting rotations, phase wraps, or accumulated motion.

Engineering Applications

In AC circuit analysis, sine and cosine describe voltage and current waveforms, while phase angle describes time offset between them. In mechanical systems, rotating shafts, cams, and linkages use trigonometric projections. In robotics, joint angles convert to end-effector positions. In communications, quadrature modulation uses sine and cosine carriers separated by 90 degrees. In graphics, rotations and circular motion rely on unit-circle relationships.

The unit circle also supports mental estimation. Sine is positive above the x-axis, cosine is positive to the right of the y-axis, and both functions stay between -1 and 1. Tangent grows large near vertical axes. If a calculation violates these expectations, check units, quadrant, and sign conventions. Many engineering mistakes are not deep mathematical failures; they are degree-radian mixups or coordinate-frame sign errors.

Use this tool to check angle conversions, signs, and tangent behavior quickly. For exact symbolic values, remember the common angles 30, 45, and 60 degrees. For numerical work, keep enough precision but recognize that floating-point results near zero may show tiny residual values. The geometry is exact; the computer's decimal display is only an approximation.

Manual quadrant checks are often faster than reaching for a calculator. Between 0 and 90 degrees, sine and cosine are positive. Between 90 and 180 degrees, sine is positive and cosine is negative. Between 180 and 270 degrees, both are negative. Between 270 and 360 degrees, sine is negative and cosine is positive. Tangent is positive when sine and cosine have the same sign and negative when they differ. These sign rules catch many mistakes in phasor diagrams, motor-control transforms, and coordinate rotations.

The unit circle also explains phase shifts. Adding 90 degrees swaps sine and cosine behavior. Adding 180 degrees changes the sign of both coordinates. Adding 360 degrees returns to the same point. In signal processing, these relationships show why a quadrature signal is one quarter cycle out of phase and why an inverted waveform is 180 degrees shifted. The circle turns abstract phase language into geometry that can be reasoned about visually.

Practice Notes

Unit Circle Visualizer should be studied from the concrete sections first: Manual Calculation Steps, Axes and Undefined Tangent, Engineering Applications. Those sections give Unit Circle its context by tying convert an angle into radians and inspect sine, cosine, tangent, and quadrant behavior to equations, domains, variables, units, vectors, matrices, or data sets represented by convert an angle into radians and inspect sine, cosine, tangent, and quadrant behavior. If a Unit Circle input cannot be located in the problem statement, pause before accepting the output.

A practical self-test for Unit Circle is this: For Unit Circle, build one small example with numbers simple enough to check by hand, then change one input and explain why the output moved. Once that case makes sense, alter convert an angle into radians and inspect sine, cosine, tangent, and quadrant behavior one at a time and explain whether the Unit Circle output should increase, decrease, change format, or stay equivalent. Watch for this Unit Circle mistake: applying the formula before checking domain, sign, units, order of operations, or the meaning of each variable.

When documenting Unit Circle, include the governing relationship, domain or unit assumptions, one intermediate step, and the way convert an angle into radians and inspect sine, cosine, tangent, and quadrant behavior enter the final result rather than only the final Unit Circle output. That written Unit Circle trail lets a student compare the tool with a textbook example, lab measurement, or instructor solution without guessing which assumption changed.