Recall how we can approximate a curve with a tangent line.
python graph
This applies the same in the 3D dimension.
Tangent Planes in 3d
Info
Tangent Plane should include every tangent line to the surface at (x0,y0,f′(x0,y0))
Representing tangent planes in 3d is very similar, except the tangent plane will be just that, a plane that represents the curvature at one exact point on the given plane.
python graph
Finding the Tangent Plane for a given Equation
To find the tangent plane, we need a few things:
The equation of the surface
ex z=2x2+y2
The point of tangency
ex (1,1,3)
Once you have these, you can find the tangent plane by following these steps:
Find Z0 by plugging in the point of tangency into the surface equation.
z_0=2(1)2+(1)2=3
Find the partial derivatives of the surface equation.
For f(x):
f(x)=4x∣_(1,1)=4
For f(y):
fy=2y∣(1,1)=2
Plug in the point of tangency and the partial derivatives into the equation of the tangent plane.