Suppose I have the functions $f(x,y)=xy-y$ and $g(u,v)=f(u,uv)$ and I want to calculate dg(a,b) two ways (1) explicitly and (2) using chain rule
My attempt: for (1) it seems easy enough just plug x=u and y=uv then, $g(u,v)=f(u,uv)=u^2v-uv$ and $\nabla g =(2uv-v,u^2-u)$ and plug points (a,b) for (u,v)
for (2) I know that, $\frac{\partial g}{\partial u}=\frac{\partial g}{\partial x}\frac{\partial x}{\partial u}+\frac{\partial g}{\partial y}\frac{\partial y}{\partial u}=\frac{\partial g}{\partial x}(1)+\frac{\partial g}{\partial y}(v)$ but how do I proceed from here? I should get the same answer as part (1) no?