The equation of the tangent plane to the surface at the point (xo,yo,zo) on the surface, is:
z−zo=fx(xo,yo)(x−xo)+fy(xo,yo)(y−yo)
In the equation, the coefficients are the partial derivatives of the function.
By using the two-dimensional surface z=f(x,y), we can evaluate the partial derivatives of the function with respect to x and y at the given point.
Given surface is z=f(x,y)=x2−2xy+y2 at the given point (1, 5, 16).
First, we find the partial derivatives of the surface at the given point:
∂x∂f=∂x∂(x2−2xy+y2)
∂x∂(x2)−∂x∂(2x)+∂x∂(y2)
fx(x,y)=2x−2y
fx(1,5)=2(1)−2(5)=2−10
fx(1,5)=−8
∂y∂f=∂y∂(x2−2xy+y2)=∂y∂(x2)−∂y∂(2xy)+∂y∂(y2)
fy(x,y)=2y−2x
fy(1,5)=2(5)−2(1)=10−2
fy(1,5)=8
Let us find an equation of the tangent plane to the surface at the given point:
z−zo=fx(xo,yo)(x−xo)+fy(xo,yo)(y−yo)
z−16=(−8)(x−1)+(8)(y−5)
z−16=−8x+8y−32
z=−8x+8y−32+16
z=−8x+8y−16
An equation of the tangent plane to the surface at the given point is
z=−8x+8y−16
Maple code:
TangentPlane(x^2 − 2xy + y^2,x=1,y=5,z=16)
output:
8x−8y+z=−16
Comments