Andromeda
Note

Small Angle Approximation

Definition

The small angle approximation is a mathematical simplification used in physics and engineering that replaces complex trigonometric functions with their linear equivalents when the angle involved is very close to zero. It leverages the first term of the Maclaurin series expansion for sine, cosine, and tangent.

sin(θ)θ,tan(θ)θ,cos(θ)1\sin(\theta) \approx \theta, \quad \tan(\theta) \approx \theta, \quad \cos(\theta) \approx 1 How to read: Sine of theta is approximately theta. Tangent of theta is approximately theta. Cosine of theta is approximately 1. Meaning / when to use: Used to radically simplify non-linear differential equations when θ\theta is small (typically less than 0.250.25 radians or 14\approx 14^\circ). Crucially, θ\theta must be measured in radians, not degrees.

Why It Matters

Trigonometric functions create highly non-linear, often unsolvable differential equations (like the exact equation for a swinging pendulum). The small angle approximation linearizes these systems, allowing engineers to find exact, simple analytical solutions for vibrations, optics, and structural deflections. It is the textbook example of intentionally trading a tiny amount of accuracy (modeling complexity) for a massive gain in computational solvability.

Core Concepts

  • Taylor Series Truncation: The exact series for sine is θθ3/3!+θ5/5!\theta - \theta^3/3! + \theta^5/5! - \dots. For very small θ\theta, the θ3\theta^3 and higher terms become microscopically small, so they are cleanly truncated, leaving just θ\theta.
  • Radian Requirement: The approximation completely fails if using degrees. It relies on the arc length formula s=rθs = r\theta; for small angles, the curved arc length is nearly identical to the straight vertical drop (sin(θ)\sin(\theta)).
  • Linearization: It transforms chaotic, non-linear restoring forces into simple, linear Hooke’s Law type forces, enabling Simple Harmonic Motion analysis.
  • Error Bounds: The error introduced by the approximation is roughly θ3/6\theta^3 / 6. At 1010^\circ (0.1740.174 rad), the error is less than 0.2%, making it highly practical.

Connected Concepts