Unit Circle Trigonometry Animator Back
High School Math / Trigonometry

Unit Circle Trigonometry Animator

Adjust angle θ to confirm how point P on the unit circle and sin, cos, tan values change in real time. Waveform graph and function comparison tabs help intuitively understand "why they work that way."

Parameters

Special Angle Presets
Unit Circle and Definition of Trigonometric Functions
Point $P$ on a circle of radius $r=1$:
$$P = (\cos\theta,\; \sin\theta)$$ Pythagorean identity:
$$\sin^2\theta + \cos^2\theta = 1$$ Tangent ratio:
$$\tan\theta = \frac{\sin\theta}{\cos\theta}$$ Special angles (in radians):
$30° = \tfrac{\pi}{6},\; 45° = \tfrac{\pi}{4},\; 60° = \tfrac{\pi}{3},\; 90° = \tfrac{\pi}{2}$
Results
sin θ
cos θ
tan θ
Quadrant / radians
Unit Circle
Waveform Graph
Function Comparison
Circle
Wave
All
💬 Conversation to Deepen Understanding
🙋
Why does the unit circle have to have a radius of 1? Can't it be 2 or 3?
🎓
When the radius is 1, the coordinates of a point on the circle directly become the values of cosθ and sinθ. If the radius were r, you'd have x = r·cosθ and y = r·sinθ, so r gets in the way, right? With 1, you skip the 'multiply by r' step. It just makes the definition cleaner—that's the only reason.
🙋
Oh, I see. So the equation sin²θ + cos²θ = 1 equals 1 because it's a unit circle?
🎓
Exactly. Point P(cosθ, sinθ) lies on a circle of radius 1, so by the Pythagorean theorem, x²+y²=1, which means cos²θ + sin²θ = 1. Textbooks often say 'memorize this,' but if you look at the unit circle diagram and think 'the hypotenuse of the right triangle is 1,' it clicks instantly.
🙋
I can't wrap my head around tan(90°) being 'undefined.' Why does it suddenly vanish?
🎓
Since tan θ = sinθ/cosθ, cos(90°) = 0 means you're dividing by zero, so it's undefined. But if you approach 90° from 89°, tan gets larger and larger (diverges to +∞); from 91°, it diverges to -∞. On the graph, there's a vertical wall at 90°, with opposite signs colliding from left and right.
🙋
Doesn't that cause problems in real engineering calculations? How do you handle it?
🎓
In CAE, we use the four-quadrant inverse tangent function 'atan2(y, x).' With tan, you can't tell 0° from 180°, but atan2 takes y and x separately, so it accurately determines which quadrant you're in. This is used in stress tensor transformations for rotating bodies to compute principal stress direction angles.
🙋
Trig functions feel like high school math—do they really come up that often in CAE work?
🎓
All the time. In structural vibration analysis, displacement takes the form A·sin(ωt+φ); Fourier transforms decompose vibration data into frequency components using sums of sin and cos. In fluid dynamics airfoil analysis, lift coefficient is approximately proportional to sin of the angle of attack (θ in the unit circle). You can safely assume that trigonometric functions are almost always lurking at the core of CAE computation kernels.
Frequently Asked Questions
How should I choose between degrees (°) and radians (rad)?
For everyday conversation, angle settings, and CAD software UIs, degrees are intuitive. Programming (Math.sin, Python's math.sin, etc.) and calculus formulas (d/dx sinx = cosx) assume radians. The conversion formula is: degrees × π/180 = radians. Most numerical computation libraries take radian input, so be careful with units in CAE implementations.
Why is the period of sin and cos 2π (360°)?
Going around the unit circle once (360° = 2π rad) brings point P back to the same coordinates. Therefore sin(θ+2π)=sinθ and cos(θ+2π)=cosθ, establishing the period as 2π. Meanwhile, tan = sinθ/cosθ, and since the numerator and denominator both flip sign simultaneously, it completes one cycle at 180° (=π), giving a period of π.
How to remember the addition formula sin(α+β) = sinα·cosβ + cosα·sinβ?
It's practical to understand it as the product of rotation matrices. Multiplying the rotation matrix for angle α by that for angle β gives the rotation matrix for angle (α+β); expanding its components yields the addition formulas directly. Remembering "sin is sin×cos + cos×sin" (with sin and cos alternating one each) reduces sign errors.
How are Mohr's stress circle and trigonometric functions related?
When coordinates are rotated by angle θ, the normal stress σ' and shear stress τ' take the form: σ' = (σx+σy)/2 + (σx-σy)/2·cos2θ + τxy·sin2θ. This matches the trajectory of a unit circle (radius R = √((Δσ/2)²+τxy²)) with 2θ as the angular parameter, and that circle is Mohr's stress circle. It's an extension of the unit circle concept to double angles.
Please explain the relationship between Fourier transform and trigonometric functions.
Any periodic signal (vibration, sound, voltage waveform, etc.) can be decomposed into a sum of sin and cos functions (Fourier series). This exploits the fact that sin/cos are mutually orthogonal basis functions, where the phase on the unit circle corresponds to frequency components. In CAE, this principle is directly used when performing FFT on accelerometer data to identify natural frequencies.
When do we use arcsin / arccos / arctan (inverse trigonometric functions)?
Use them when you need to find an angle from a value. Typical examples include inverse kinematics for calculating joint angles from end-effector coordinates in arm mechanisms, and computing the principal stress direction angle θp = (1/2)·arctan(2τxy/(σx-σy)) in Mohr's stress circle. The domain of arcsin is [-1,1] (output -90° to 90°), while arctan accepts any real number (output -90° to 90°). To correctly distinguish quadrants, always use atan2.

What is Trigonometric Functions & Unit Circle?

Trigonometric Functions & Unit Circle is a fundamental topic in engineering and applied physics. This interactive simulator lets you explore the key behaviors and relationships by directly manipulating parameters and observing real-time results.

By combining numerical computation with visual feedback, the simulator bridges the gap between abstract theory and physical intuition — making it an effective learning tool for students and a rapid-verification tool for practicing engineers.

Physical Model & Key Equations

The simulator is based on the governing equations behind Unit Circle Trigonometry Animator. Understanding these equations is key to interpreting the results correctly.

Each parameter in the equations corresponds to a slider in the control panel. Moving a slider changes the equation's solution in real time, helping you build a direct connection between mathematical expressions and physical behavior.

Real-World Applications

Engineering Design: The concepts behind Unit Circle Trigonometry Animator are applied across mechanical, structural, electrical, and fluid engineering disciplines. This tool provides a quick way to estimate design parameters and sensitivity before committing to full CAE analysis.

Education & Research: Widely used in engineering curricula to connect theory with numerical computation. Also serves as a first-pass validation tool in research settings.

CAE Workflow Integration: Before running finite element (FEM) or computational fluid dynamics (CFD) simulations, engineers use simplified models like this to establish physical scale, identify dominant parameters, and define realistic boundary conditions.

Common Misconceptions and Points of Caution

Model assumptions: The mathematical model used here relies on simplifying assumptions such as linearity, homogeneity, and isotropy. Always verify that your real system satisfies these assumptions before applying results directly to design decisions.

Units and scale: Many calculation errors arise from unit conversion mistakes or order-of-magnitude errors. Pay close attention to the units shown next to each parameter input.

Validating results: Always sanity-check simulator output against physical intuition or hand calculations. If a result seems unexpected, review your input parameters or verify with an independent method.