grog said:
ok, based on the solution to another problem, I've worked out:
F(x,y,z) = xy+yz+zx = 0
Fx = y+z = 2
Fy = x+z = 2
Fz = y+x = 2
A correction to the above. The partials are all functions, and are not constant.
F
x(x, y, z) = y+z, F
x(1, 1, 1) = 2
F
y(x, y, z) = x+z, F
y(1, 1, 1) = 2
F
z(x, y, z) = y+x, F
z(1, 1, 1) = 2
grog said:
and the equation of the plane as
2(x-1) + 2(y-1) + 2(z-1) = 0
or
x+y+z = 3
How does that look for the equation of the tangent plane?
Looks fine to me.
I approached this a different way, assuming that z was (implicitly) a function of x and y.
From the original equation, I got
z_x = \frac{-y - z}{x + y}, and
z_y = \frac{-x - z}{x + y}
At the point of tangency,
z_x(1, 1) = \frac{-y - z}{x + y}|_{(1, 1)} = -1, and
z_y(1, 1) = \frac{-x - z}{x + y}|_{(1, 1)} = -1
From these I got the same equation for the plane, namely x + y + z = 3.
As a check, the point (1, 1, 1) satisfies the plane's equation.
The vector
i +
j +
k is normal to the plane.
The two first partials, expressed as vectors are
i -
k (z_x at (1, 1, 1)))
and
j -
k (z_y at (1, 1, 1))
If you dot the latter two vectors with the plane's normal vector, you get zero, meaning that the slopes of the partial derivatives are each perpendicular to the plane's normal. That pretty well nails down the plane.