Tangent Planes and Linear Approximations
What You’ll Learn
Section titled “What You’ll Learn”In this lesson you’ll learn how to find the tangent plane to a surface at a point and use it to approximate function values nearby. This is the multivariable version of the tangent line from Calculus 1.
The Concept
Section titled “The Concept”The Tangent Plane
Section titled “The Tangent Plane”In Calculus 1, the tangent line to y = f(x) at a point gives the best linear approximation to the curve near that point. In Calculus 3, we have surfaces z = f(x, y), and the tangent line becomes a tangent plane.
For a surface z = f(x, y), the tangent plane at the point (x₀, y₀, z₀) is
The partial derivatives act as slopes: one in the x-direction, one in the y-direction. Together they define a flat plane that just touches the surface at that point.
Linear Approximation
Section titled “Linear Approximation”The tangent plane gives us a way to estimate f(x, y) near a known point without computing the full function
This works well when x and y are close to x₀ and y₀. The further you move from the point, the worse the approximation gets, just like tangent lines in single-variable calculus.
Worked Examples
Section titled “Worked Examples”Example 1: Finding the tangent plane
Find the tangent plane to f(x, y) = x² + y² at the point (1, 2).
First, compute the function value and partial derivatives at (1, 2)
Plug into the tangent plane formula
Simplify
This plane touches the paraboloid at exactly (1, 2, 5) and has slope 2 in the x-direction and slope 4 in the y-direction.
The blue surface is the paraboloid z = x² + y². The orange plane is the tangent plane z = 2x + 4y - 5, touching the surface at the purple point (1, 2, 5). Notice how the plane matches the surface closely near the point but drifts away further out.
Example 2: Linear approximation
Use the tangent plane from Example 1 to approximate f(1.1, 2.05).
Instead of computing 1.1² + 2.05² directly, use the linear approximation
The actual value is 1.21 + 4.2025 = 5.4125. The approximation is off by only 0.0125, which is pretty good for such a simple calculation.
This shows a 1D slice of the idea (holding y = 2 and varying x). The blue curve is the actual function, the dashed orange line is the tangent (linear approximation), and at x = 1.5 the gap between actual (6.25) and approx (6.0) is small. The full tangent plane does the same thing but in both the x and y directions simultaneously.
Example 3: When the approximation breaks down
The linear approximation works because the tangent plane matches the surface at the point and has the same slopes. But it’s only a flat plane, so it can’t capture curvature. If you try to approximate f(3, 5) using the tangent plane at (1, 2), you get
The actual value is 9 + 25 = 34. That’s way off. The approximation only works well when the changes in x and y are small.
Real-World Application
Section titled “Real-World Application”Tangent planes and linear approximations show up constantly:
- Game engines use linear approximations for quick collision response on curved surfaces, estimating the local surface as a flat plane
- Machine learning uses linear approximations at every step of gradient descent, treating the loss surface as locally flat to decide which direction to step
- Engineering uses linearization to analyze how small changes in inputs affect outputs (sensitivity analysis)
- Physics linearizes nonlinear equations near equilibrium points to make them solvable