BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeCalculus III: Multivariable CalculusStudy Guide: Tangent Planes and Linear Approximations
Study Guide845 words

Study Guide: Tangent Planes and Linear Approximations

Tangent Planes and Linear Approximations

Tangent Planes and Linear Approximations

Learning Objectives

After studying this material, you should be able to:

  • Determine the equation of a plane tangent to a given surface z=f(x,y)z = f(x, y)z=f(x,y) at a specific point (x0,y0)(x_0, y_0)(x0​,y0​).
  • Construct and use the Linearization L(x,y)L(x, y)L(x,y) to approximate function values near a known point.
  • Explain the formal definition of differentiability for functions of two variables, distinguishing it from the mere existence of partial derivatives.
  • Calculate the total differential dzdzdz to estimate small changes in a dependent variable.

Key Terms & Glossary

  • Tangent Plane: A plane that "just touches" a surface at a point PPP. For a smooth surface, it contains all possible tangent lines to curves on the surface passing through PPP. Example: A flat piece of glass resting on top of a bowling ball.
  • Linearization (L(x,y)L(x, y)L(x,y)): The linear function whose graph is the tangent plane. It provides the "best linear approximation" to the function near the point of tangency. Example: Using a flat map to calculate distances for a small park on the curved Earth.
  • Differentiability: A property where the linear approximation becomes increasingly accurate as you move closer to the point. It requires the surface to be locally "flat" and smooth. Example: A smooth hillside is differentiable; a sharp mountain peak is not.
  • Total Differential (dzdzdz): Represents the change in the height of the tangent plane (zzz) given small changes dxdxdx and dydydy. Example: Estimating how much the volume of a box changes if each side is slightly elongated.

The "Big Idea"

In Single-Variable Calculus, we use the tangent line to approximate a curve. In Multivariable Calculus, we extend this to 3D: we use a tangent plane to approximate a surface. This allows us to simplify complex nonlinear functions into linear ones for local calculations, which is the foundation for optimization and numerical physics simulations.

Formula / Concept Box

ConceptFormula / Definition
Tangent Plane Equationz−z0=fx(a,b)(x−a)+fy(a,b)(y−b)z - z_0 = f_x(a, b)(x - a) + f_y(a, b)(y - b)z−z0​=fx​(a,b)(x−a)+fy​(a,b)(y−b)
LinearizationL(x,y)=f(a,b)+fx(a,b)(x−a)+fy(a,b)(y−b)L(x, y) = f(a, b) + f_x(a, b)(x - a) + f_y(a, b)(y - b)L(x,y)=f(a,b)+fx​(a,b)(x−a)+fy​(a,b)(y−b)
Total Differentialdz=fx(x,y)dx+fy(x,y)dydz = f_x(x, y)dx + f_y(x, y)dydz=fx​(x,y)dx+fy​(x,y)dy
Differentiability Requirementlim⁡(x,y)→(a,b)f(x,y)−L(x,y)(x−a)2+(y−b)2=0\lim_{(x,y) \to (a,b)} \frac{f(x,y) - L(x,y)}{\sqrt{(x-a)^2 + (y-b)^2}} = 0lim(x,y)→(a,b)​(x−a)2+(y−b)2​f(x,y)−L(x,y)​=0

Hierarchical Outline

  • I. The Geometry of Tangent Planes
    • Smoothness: A tangent plane only exists if the surface is "smooth" (no sharp corners/creases).
    • Normal Vector: The coefficients of the tangent plane equation (fx,fy,−1)(f_x, f_y, -1)(fx​,fy​,−1) relate to the vector normal to the surface.
  • II. Linear Approximations
    • Local Linearity: f(x,y)≈L(x,y)f(x, y) \approx L(x, y)f(x,y)≈L(x,y) when (x,y)(x, y)(x,y) is close to (a,b)(a, b)(a,b).
    • Error Analysis: The approximation error grows as you move further from the point of tangency.
  • III. Differentiability and the Total Differential
    • Sufficient Condition: If fxf_xfx​ and fyf_yfy​ exist and are continuous near (a,b)(a, b)(a,b), then fff is differentiable at (a,b)(a, b)(a,b).
    • Differentials vs. Increments: dzdzdz (differential) approximates Δz\Delta zΔz (actual change).

Visual Anchors

Logic Flow: From Partials to Tangent Planes

Loading Diagram...
Figure 1 — Mermaid diagram

Geometric Representation

Compiling TikZ diagram…
⏳
Running TeX engine…
This may take a few seconds
Figure 2 — TikZ diagram

Definition-Example Pairs

  • Partial Derivative Interpretation: fxf_xfx​ is the slope of the surface in the xxx-direction. Example: If you are standing on a hill and move strictly North, the steepness you feel is the partial derivative in the North direction.
  • Total Differential Approximation: Using dzdzdz to find errors. Example: A machine cuts a metal disk. If the radius rrr has a tolerance of ±0.1\pm 0.1±0.1mm, dzdzdz tells us the estimated range of error for the disk's area.

Worked Examples

Example 1: Finding a Tangent Plane

Problem: Find the equation of the tangent plane to z=x2+3xy+y2z = x^2 + 3xy + y^2z=x2+3xy+y2 at the point (1,2)(1, 2)(1,2).

Step 1: Find the z-value. z0=f(1,2)=12+3(1)(2)+22=1+6+4=11z_0 = f(1, 2) = 1^2 + 3(1)(2) + 2^2 = 1 + 6 + 4 = 11z0​=f(1,2)=12+3(1)(2)+22=1+6+4=11.

Step 2: Compute partial derivatives. fx=2x+3y  ⟹  fx(1,2)=2(1)+3(2)=8f_x = 2x + 3y \implies f_x(1, 2) = 2(1) + 3(2) = 8fx​=2x+3y⟹fx​(1,2)=2(1)+3(2)=8 fy=3x+2y  ⟹  fy(1,2)=3(1)+2(2)=7f_y = 3x + 2y \implies f_y(1, 2) = 3(1) + 2(2) = 7fy​=3x+2y⟹fy​(1,2)=3(1)+2(2)=7

Step 3: Plug into the tangent plane formula. z - 11 = 8(x - 1) + 7(y - 2) z = 8x - 8 + 7y - 14 + 11 Final Equation: z=8x+7y−11z = 8x + 7y - 11z=8x+7y−11.

Example 2: Linear Approximation

Problem: Approximate f(1.02,1.97)f(1.02, 1.97)f(1.02,1.97) for the function in Example 1.

Solution: Using L(x, y) = 11 + 8(x - 1) + 7(y - 2): L(1.02, 1.97) = 11 + 8(0.02) + 7(-0.03) L(1.02, 1.97) = 11 + 0.16 - 0.21 = 10.95.

Checkpoint Questions

  1. Concept Check: If the partial derivatives fxf_xfx​ and fyf_yfy​ exist at a point, is the function guaranteed to be differentiable there? (Answer: No, the derivatives must also be continuous, or the limit of the error term must be zero).
  2. Calculation: What is the total differential dzdzdz for z=exyz = e^{xy}z=exy? (Answer: dz=yexydx+xexydydz = y e^{xy} dx + x e^{xy} dydz=yexydx+xexydy).
  3. Visualization: In the equation of a plane z=Ax+By+Cz = Ax + By + Cz=Ax+By+C, what do AAA and BBB represent in terms of calculus? (Answer: AAA is fxf_xfx​ and BBB is fyf_yfy​).

[!TIP] When calculating L(x,y)L(x, y)L(x,y), always pick a "base point" (a,b)(a, b)(a,b) where the function and its derivatives are easy to calculate (integers or simple fractions).

[!WARNING] Differentiability in 2D is much stricter than in 1D. A surface can have partial derivatives in every direction but still not be differentiable if those tangent lines don't all lie in the same flat plane.

All Calculus III: Multivariable Calculus Study Resources

Related Notes

  • Applications of Vectors: Force, Volume, and Geometric Analysis842 words
  • Arc Length and Curvature: Multivariable Calculus Study Guide780 words
  • Calculus III: Area and Arc Length in Polar Coordinates Study Guide875 words
  • Calculus of Parametric Curves: Comprehensive Study Guide892 words
  • Calculus of Vector-Valued Functions: A Comprehensive Study Guide825 words
  • Conic Sections: Geometric Foundations and Polar Representations845 words
  • Mastering Conservative Vector Fields: Path Independence and Potential Functions925 words
  • Mastering Cylindrical and Spherical Coordinates925 words
  • Study Guide: Directional Derivatives and the Gradient985 words
  • Divergence and Curl: Vector Calculus Study Guide860 words
  • Double Integrals in Polar Coordinates875 words
  • Study Guide: Double Integrals over General Regions875 words

Ready to study Calculus III: Multivariable Calculus?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Calculus III: Multivariable Calculus?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Calculus III: Multivariable Calculus ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Loading Diagram...
Flowchart, left to right. Function f(x,y) connects to Calculate partials f_x, f_y. B connects to Are f_x, f_y continuous?. C -- Yes connects to Function is Differentiable. C -- No connects to Check Differentiability Definition. D connects to Tangent Plane Exists. F connects to Linear Approximation L(x,y).