Tangent Line
A tangent line just touches a curve at one point and has the same slope as the curve at that exact point.
Formula
y - f(a) = f'(a)(x - a)
Definition
A tangent line is a straight line that just grazes a curve at exactly one point, going in the same direction as the curve at that spot, the best straight-line approximation to a curve at a single point. The tangent line to $y = f(x)$ at $x = a$ has slope $f'(a)$ and passes through $(a, f(a))$, giving the equation $y - f(a) = f'(a)(x - a)$; it is the limit of secant lines as the second point approaches $a$, and is the first-order Taylor approximation of $f$ at $a$. In differential geometry, this generalizes to the tangent space of a manifold at a point, and for curves in $\mathbb{R}^n$ it is spanned by the velocity vector $r'(t)$.
Example
Imagine a ball rolling off a table: the moment it leaves, it travels in a straight line, tangent to the ball's curved path at the departure point. For $f(x) = x^2$ at $x = 3$: $f'(3) = 6$, giving the tangent line $y - 9 = 6(x - 3)$, or $y = 6x - 9$. Newton's method, $x_{n+1} = x_n - f(x_n)/f'(x_n)$, iteratively follows tangent lines to find roots and converges quadratically near a simple root.
Key Insight
Linear approximation, $L(x) = f(a) + f'(a)(x-a)$, uses the tangent line to estimate $f(x)$ near $a$ and is the foundation of Newton's method for solving equations. The tangent line concept is the bridge between local linear algebra and global nonlinear geometry, central to differential calculus, manifold theory, and optimization.