2

Find the Jacobian $$\frac{\partial(x,y)}{\partial(u,v)}$$ for $x=u^2+v^2$, $y=u^2-v^2$.

My solution:

I tried solving it as it is by using the Jacobian matrix (determinant?) and got my answer to be $-8uv$. I think the answer is wrong since the answers in my book are all purely numerical. Is there something that I have to do to these equations to make them non-polynomials ?

1 Answers1

6

The term Jacobian is ambiguous in that it may refer to both the Jacobian matrix

$$J = \frac{\partial(x,y)}{\partial(u,v)} = \begin{bmatrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\\frac{\partial y}{\partial u} & \frac{\partial y}{\partial v}\end{bmatrix}$$

and the Jacobian determinant

$$\det{J} = \frac{\partial x}{\partial u}\frac{\partial y}{\partial v} - \frac{\partial x}{\partial v}\frac{\partial y}{\partial u}.$$

In your specific instance, the Jacobian matrix is

$$J = \begin{bmatrix} 2u & 2v \\\ 2u & -2v\end{bmatrix}$$

and the Jacobian determinant is $\det{J} = -8uv$, as you calculated.

(I'm giving the complete answer since I'm sure that you did the correct thing in your solution).

t.b.
  • 78,116