Finding the Equation of a Tangent Plane- Tutorial
What Is a Tangent Plane and Why Should You Care?
A tangent plane is the flat surface that just touches a curved surface at a single point. Think of it like pressing a sheet of glass against a balloon — the glass touches at one point and follows the curve's slope right there.
In calculus, tangent planes let you approximate multivariable functions near a given point. They're the 3D equivalent of linear approximation for single-variable functions.
You'll need this for:
- Linear approximations of complex surfaces
- Gradient descent in machine learning
- Optimization problems in 3D
- Any physics involving surface interactions
The Formula You Actually Need
Given a function z = f(x, y) and a point (a, b), the tangent plane at (a, b, f(a, b)) is:
z - f(a,b) = fₓ(a,b)(x - a) + fᵧ(a,b)(y - b)
Where:
- fₓ = partial derivative with respect to x
- fᵧ = partial derivative with respect to y
That's it. Two partial derivatives plugged into one formula. Everything else is just algebra.
Step-by-Step: Finding the Tangent Plane
Step 1: Find Your Point
You need (a, b) on the xy-plane. The z-value is simply f(a, b). Write down the point (a, b, f(a, b)).
Step 2: Compute the Partial Derivatives
Find fₓ(x, y) by treating y as constant and differentiating with respect to x. Then find fᵧ(x, y) by treating x as constant.
Step 3: Evaluate at Your Point
Plug (a, b) into both partial derivatives. You need the numerical values fₓ(a, b) and fᵧ(a, b).
Step 4: Plug Into the Formula
Substitute everything into z - f(a,b) = fₓ(a,b)(x - a) + fᵧ(a,b)(y - b). Simplify to get z on one side.
Example: Let's Do One Fully
Find the tangent plane to z = x² + 3xy - 2y² at the point (1, 2).
Step 1: Find z at the point
f(1, 2) = 1² + 3(1)(2) - 2(2)² = 1 + 6 - 8 = -1
Point: (1, 2, -1)
Step 2: Partial derivatives
fₓ = 2x + 3y
fᵧ = 3x - 4y
Step 3: Evaluate at (1, 2)
fₓ(1, 2) = 2(1) + 3(2) = 2 + 6 = 8
fᵧ(1, 2) = 3(1) - 4(2) = 3 - 8 = -5
Step 4: Plug in
z - (-1) = 8(x - 1) + (-5)(y - 2)
z + 1 = 8x - 8 - 5y + 10
z = 8x - 5y + 3
Done. That's your tangent plane.
Common Mistakes That Cost You Points
- Forgetting to evaluate partial derivatives at the point. fₓ(a, b) is not the same as fₓ(x, y). This is the #1 error.
- Solving for z incorrectly. Take your time with the algebra on the right side.
- Wrong partial derivative formula. When taking fₓ, everything with just y is treated as a constant.
- Not simplifying. Leave it in the form z = mx + by + c. That's the standard.
Tangent Plane vs. Linear Approximation
| Concept | Dimension | Formula |
|---|---|---|
| Linear approximation (1D) | Line tangent to curve | L(x) = f(a) + f'(a)(x - a) |
| Tangent plane (2D) | Plane tangent to surface | z = f(a,b) + fₓ(a,b)(x-a) + fᵧ(a,b)(y-b) |
The pattern is identical. The tangent plane is just the multivariable extension of linear approximation.
When Tangent Plane Approximation Actually Works
Tangent planes give good approximations only very close to (a, b). The further you get from your point, the worse the error.
For surfaces with high curvature, the approximation breaks down fast. For relatively flat regions near your point, it's solid.
Use it when you need a quick estimate or when the function is too complicated to work with directly. Don't use it for large distances from your base point.
Quick Reference Cheat Sheet
- Partial w.r.t. x: treat y as constant
- Partial w.r.t. y: treat x as constant
- Always evaluate partials at your specific point
- Formula: z = f(a,b) + fₓ(a,b)(x-a) + fᵧ(a,b)(y-b)
- Simplify everything to z = ... form
Memorize the formula. Practice partial derivatives. That's 90% of this topic right there.