Munkres Analysis on Manifolds Differentiation Question

651 Views Asked by At

Below is a problem from Munkre's Analysis on Manifolds book. I'm unsure of how to approach this; it seems to me to apply the defintion of the derivitative, but I cannot seem to get that to work out. Can anyone offer any hints?

If $f \colon \mathbb{R}^3 \to \mathbb{R}$ and $g \colon \mathbb{R}^2 \to \mathbb{R}$ be differentiable functions. Let $F \colon \mathbb{R}^2 \to \mathbb{R}$ be defined by the equation $$ F(x,y) = f(x,y,g(x,y)). $$ (a) Find $DF$ in terms of the partials of $f$ and $g$. [ ] (b) If $F(x,y)=0$ for all $(x,y)$, find $D_1g$ and $D_2g$ in terms of the partials of $f$.

2

There are 2 best solutions below

5
On

$$ F_x = f_x + f_zg_x,\ F_y=f_y+f_zg_y $$

If $F$ is constant from the above we have $$ g_x=-f_x/f_z,\ g_y= -f_y/f_z$$

Addendum - Chain rule : In general we have formula : $F(t)=f(g(t),h(t),i(t))$ Then $$ \frac{d}{dt} F=f_xg'(t) + f_y h'(t) + f_z i'(t) $$

0
On

Let $c(x,y) = (x,y,g(x,y))$. If we wish to get $F_x, F_y$ we use the chain-rule for paths which implies;

$$F_x = \frac{d}{dx} \ f \circ c(x,y) = \langle f_x ,f_y,f_z\rangle|_{c(x,y)} \cdot \langle 1,0,g_x(x,y)\rangle = f_x + f_z \cdot g_x$$

$$F_y = \frac{d}{dy} \ f \circ c(x,y) =\langle f_x ,f_y,f_z\rangle|_{c(x,y)} \cdot \langle 0,1,g_y(x,y)\rangle = f_y + f_z \cdot g_y$$

Therefore the jacobian $DF$ is given by;

$$\begin{bmatrix} f_x+f_z \cdot g_x & \ \ f_y + f_z \cdot g_y \end{bmatrix}$$

If $F(x,y) = 0$ then we have;

$$f_x + f_z \cdot g_x = 0 \Rightarrow g_x = -\frac{f_x}{f_z}$$

$$f_y+f_z \cdot g_y = 0 \Rightarrow g_y = - \frac{f_y}{f_z}$$