Eric C. answered 01/06/16
Tutor
5.0
(180)
Engineer, Surfer Dude, Football Player, USC Alum, Math Aficionado
Hey Teddy.
Zx and Zy are partial derivatives. Zx means you take the derivative of Z wherein x is your only variable, leaving y to be treated as a constant. Zy means x is your constant and y is now your variable. As you can see from your equation, Zx is going to be substantially more complicated.
Let's start with Zy. You'll leave the x3 term out front alone since it's a constant, and then employ the chain rule with sin.
Z = x3*cos(y*1/x)
Zy = x3*(-sin(y*1/x)*1/x)
= -x2*sin(y/x)
Now Zx. You'll have to employ both the product rule and the chain rule for this one.
Zx = 3*x2*cos(y/x) + x3*(-sin(y/x)*y*(-1/x2))
= 3*x2*cos(y/x) + y*x*sin(y/x)
= 3x2*cos(y/x) + xy*sin(y/x)
Your question then says so show that x*Zx + y*Zy = 3Z
x*Zx = 3x3*cos(y/x) + x2*y*sin(y/x)
y*Zy = -x2*y*sin(y/x)
x*Zx + y*Zy = 3x3*cos(y/x) + x2*y*sin(y/x) - x2*y*sin(y/x)
The last two terms cancel, and you're left with just
3x3*cos(y/x), which is 3Z.
Hope this helps.