3. Partial Derivatives

Tangent Planes And Linearization

Discusses tangent planes to surfaces and linear approximations of multivariable functions.

Tangent Planes and Linearization

Welcome, students! 🌟 Today’s lesson dives into the exciting world of tangent planes and linearization in multivariable calculus. By the end of this lesson, you’ll understand how to find the equation of a tangent plane to a surface and how to use linear approximations to estimate values of multivariable functions. These tools are super handy in fields like physics, engineering, and economics, where predicting behavior near a point is crucial. Ready to unlock the power of these concepts? Let’s get started! 🚀

Understanding Surfaces and Their Tangent Planes

Before we jump into tangent planes, let’s make sure we’re on the same page about surfaces. In multivariable calculus, a surface is typically defined by a function of two variables, such as:

$$z = f(x, y)$$

This means that for each pair $(x, y)$, there’s a corresponding $z$ value, giving us a 3D shape.

What Exactly Is a Tangent Plane?

Imagine you’re standing on a hill. The surface of the hill represents a function $z = f(x, y)$. Now, let’s say you want to find a flat surface that “just touches” the hill at the point where you’re standing—this flat surface is the tangent plane. It’s the 3D analog of a tangent line in single-variable calculus.

At a specific point $(x_0, y_0)$, the tangent plane gives us the best linear approximation of the surface. It “hugs” the surface closely at that point, and it’s super useful when we want to approximate the function nearby.

The Equation of a Tangent Plane

The formula for the tangent plane to the surface $z = f(x, y)$ at the point $(x_0, y_0, z_0)$ is:

$$z - z_0 = f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)$$

Let’s break this down:

  • $(x_0, y_0)$ is the point in the $xy$-plane where we’re finding the tangent plane.
  • $z_0 = f(x_0, y_0)$ is the height of the surface at that point.
  • $f_x(x_0, y_0)$ is the partial derivative of $f$ with respect to $x$ at $(x_0, y_0)$, which tells us how the surface changes as we move in the $x$ direction.
  • $f_y(x_0, y_0)$ is the partial derivative of $f$ with respect to $y$ at $(x_0, y_0)$, which tells us how the surface changes as we move in the $y$ direction.

In essence, the tangent plane is made up of the original point plus the slopes in the $x$ and $y$ directions.

Partial Derivatives: The Key to Tangent Planes

To find the partial derivatives, we treat all other variables as constants and differentiate with respect to one variable at a time. Let’s say we have a function:

$$f(x, y) = x^2y + 3xy^2$$

  • To find $f_x(x, y)$, we treat $y$ as a constant and differentiate with respect to $x$:

$$f_x(x, y) = 2xy + 3y^2$$

  • To find $f_y(x, y)$, we treat $x$ as a constant and differentiate with respect to $y$:

$$f_y(x, y) = x^2 + 6xy$$

So, for any point $(x_0, y_0)$, we can plug these into the tangent plane formula to find the equation of the plane.

A Real-World Example: Temperature Distribution

Imagine you’re studying the temperature distribution over a metal plate. The temperature at any point $(x, y)$ is given by:

$$T(x, y) = 100 - 4x^2 - 9y^2$$

We want to find the tangent plane at the point $(1, 1)$. Let’s go step by step:

  1. Find $T_x(x, y)$:

$$T_x(x, y) = -8x$$

  1. Find $T_y(x, y)$:

$$T_y(x, y) = -18y$$

  1. Evaluate these at $(x_0, y_0) = (1, 1)$:

$$T_x(1, 1) = -8(1) = -8$$

$$T_y(1, 1) = -18(1) = -18$$

  1. Find $T(1, 1)$:

$$T(1, 1) = 100 - 4(1)^2 - 9(1)^2 = 100 - 4 - 9 = 87$$

  1. Plug into the tangent plane formula:

$$z - 87 = (-8)(x - 1) + (-18)(y - 1)$$

  1. Simplify:

$$z - 87 = -8(x - 1) - 18(y - 1)$$

$$z = 87 - 8x + 8 - 18y + 18$$

$$z = 113 - 8x - 18y$$

This is the equation of the tangent plane at $(1, 1)$. If you move a tiny bit away from $(1, 1)$, you can use this plane to approximate the temperature.

Linearization: Approximating Functions Near a Point

Now that we know how to find tangent planes, let’s talk about linearization. Linearization is the process of using a tangent plane to approximate the values of a function near a given point. It’s like zooming in on the surface until it looks almost flat, and then using that flat surface to estimate values.

The Linearization Formula

The linearization of a function $f(x, y)$ at a point $(x_0, y_0)$ is:

$$L(x, y) = f(x_0, y_0) + f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)$$

Notice that this formula looks a lot like the tangent plane equation. That’s because the tangent plane is the best linear approximation of the surface near that point.

Why Use Linearization?

Linearization is super useful when a function is complicated, but we only need an approximate value near a specific point. For example, in engineering, if you know how a system behaves at one point, you can use linearization to predict how it behaves nearby without recalculating everything.

Example: Linearization of a Nonlinear Function

Let’s say we have a function that models the height of a surface:

$$f(x, y) = \sin(xy) + x^2y$$

We want to approximate $f(1.1, 0.9)$ using linearization at the point $(1, 1)$.

  1. Find $f_x(x, y)$:

$$f_x(x, y) = y\cos(xy) + 2xy$$

  1. Find $f_y(x, y)$:

$$f_y(x, y) = x\cos(xy) + x^2$$

  1. Evaluate at $(1, 1)$:

$$f(1, 1) = \sin(1 \cdot 1) + 1^2 \cdot 1 = \sin(1) + 1 \approx 1.8415$$

$$f_x(1, 1) = (1)\cos(1) + 2(1)(1) = \cos(1) + 2 \approx 2.5403$$

$$f_y(1, 1) = (1)\cos(1) + 1^2 = \cos(1) + 1 \approx 1.5403$$

  1. Use the linearization formula:

$$L(x, y) = 1.8415 + 2.5403(x - 1) + 1.5403(y - 1)$$

  1. Plug in $(x, y) = (1.1, 0.9)$:

$$L(1.1, 0.9) = 1.8415 + 2.5403(1.1 - 1) + 1.5403(0.9 - 1)$$

$$= 1.8415 + 2.5403(0.1) + 1.5403(-0.1)$$

$$= 1.8415 + 0.25403 - 0.15403$$

$$\approx 1.9415$$

So, $f(1.1, 0.9) \approx 1.9415$ using linearization. The actual value is about 1.942, so our approximation is pretty close!

How Accurate Is Linearization?

Linearization is most accurate when you stay close to the point $(x_0, y_0)$. As you move farther away, the surface might curve more, and the approximation won’t be as precise. But for small changes, linearization is a powerful tool.

Fun Fact: The Tangent Plane as a Local Flat Earth Model 🌍

You’ve probably heard the joke about “flat-earthers” who believe the Earth is flat. Well, in a way, they’re using a form of linearization! If you zoom in on any small region of the Earth’s surface, it looks flat. That’s exactly what a tangent plane does—it gives us a “flat earth” model for a tiny region of a curved surface. It’s not perfect for large distances, but it’s super handy for small ones.

Visualizing Tangent Planes

It can be tough to visualize these concepts without seeing them. Let’s think of a saddle-shaped surface, like $z = x^2 - y^2$. If you pick the point $(0, 0)$, the tangent plane is flat and horizontal. But if you move to a point like $(1, 1)$, the tangent plane tilts because the slope in the $x$ and $y$ directions changes.

If you have access to graphing software (such as GeoGebra or Desmos 3D), try plotting a surface and its tangent plane. You’ll see how the plane just touches the surface at one point and stays close to it nearby.

Why Tangent Planes Matter in the Real World

Tangent planes and linearization aren’t just for math class—they show up in real life all the time. Here are a few examples:

  • In physics, tangent planes help approximate how forces act on curved surfaces, like air flowing over an airplane wing.
  • In economics, they help predict how changes in two variables (like supply and demand) will affect a third variable (like price).
  • In computer graphics, tangent planes help define how light reflects off a 3D surface, giving us realistic shading.

Conclusion

In this lesson, students, we explored the world of tangent planes and linearization. We learned that:

  • A tangent plane is the best linear approximation to a surface at a given point.
  • The equation of the tangent plane uses partial derivatives to capture the slopes in the $x$ and $y$ directions.
  • Linearization allows us to approximate the values of a function near a point using the tangent plane.
  • These concepts are not only theoretical but also have practical applications in physics, engineering, economics, and beyond.

Keep practicing, and soon you’ll be able to find tangent planes and linearize functions with ease! 🎯

Study Notes

  • A surface can be described by $z = f(x, y)$.
  • The tangent plane at $(x_0, y_0)$ is the best linear approximation of the surface near that point.

Tangent plane formula:

$$z - z_0 = f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)$$

  • $z_0 = f(x_0, y_0)$ is the function value at the point.
  • $f_x(x_0, y_0)$ is the partial derivative with respect to $x$ at $(x_0, y_0)$.
  • $f_y(x_0, y_0)$ is the partial derivative with respect to $y$ at $(x_0, y_0)$.
  • Partial derivatives:

To find $f_x(x, y)$, differentiate $f(x, y)$ with respect to $x$ while treating $y$ as a constant.

To find $f_y(x, y)$, differentiate $f(x, y)$ with respect to $y$ while treating $x$ as a constant.

  • Linearization formula:

$$L(x, y) = f(x_0, y_0) + f_x(x_0, y_0)(x - x_0) + f_y(x_0, y_0)(y - y_0)$$

  • Linearization is a way to approximate the value of $f(x, y)$ near $(x_0, y_0)$.
  • Linearization is most accurate close to $(x_0, y_0)$ and less accurate as you move farther away.
  • Real-world applications of tangent planes and linearization include physics (approximating forces), economics (predicting price changes), and computer graphics (shading surfaces).
  • Visualization tools like GeoGebra or Desmos 3D can help you see how tangent planes touch surfaces.

Keep these notes handy, students, and refer to them whenever you need a quick refresher on tangent planes and linearization! 🚀

Practice Quiz

5 questions to test your understanding

Tangent Planes And Linearization — High School Calculus 3 | A-Warded