Jacobian matrix of $\mathbb R^3$ functions involving unit vector

derivativesjacobianreal-analysis

Jacobian matrix of $\mathbb R^3$ functions involving unit vector

I'm learning differentiation of vector-valued functions in my analysis class now and I'm a bit stuck in the following question:

Given $f:$ $\mathbb{R^3}\setminus \{0,0,0\} \to \mathbb{R^3}$,
$f(x)=x/||x||,$ for all $x \neq (0,0,0).$ Find ${(Df(p))}$ for $p
> \neq (0,0,0)$
, and hence prove that $||p|| {(Df(p))}^2 = {(Df(p))}$.

My attempt:
I know that ${(Df(p))}$ will be a $3 \times 3$ matrix represented by the gradient vectors of the 3 coordinate functions. While solving for $||p|| {(Df(p))}^2$, the only way I thought of is to do the matrix multiplication of ${(Df(p))}$ to itself multiplied by the norm of $p$ to get ${(Df(p))}$ which is a bit tedious and seems not to get me anywhere to what I need to derive. Could anyone give me some directions on how I could approach the question (probably some definitions that I've missed?). Thanks…

Best Answer

Let $p=(x,y,z)$. Then $$\frac d{dx}\frac x{\sqrt{x^2+y^2+z^2}}=\frac {y^2+z^2}{(x^2+y^2+z^2)^{\frac32}}$$ and $$\frac d{dx}\frac 1{\sqrt{x^2+y^2+z^2}}=-\frac x{(x^2+y^2+z^2)^{\frac32}}$$ Then $$Df(p)=\frac 1{(x^2+y^2+z^2)^{\frac32}}\begin{pmatrix}y^2+z^2&-xy&-xz\\-xy&x^2+z^2&-yz\\-xz&-yz&x^2+y^2\end{pmatrix}$$ Let the Matrix part be $M$. Then elements of $M^2$ are $$(M^2)_{11}=(y^2+z^2)^2+x^2y^2+x^2z^2=(y^2+z^2)(x^2+y^2+z^2)$$ $$(M^2)_{12}=(y^2+z^2)(-xy)-xy(x^2+z^2)+xyz^2=-xy(x^2+y^2+z^2)$$ I think you can continue from here.