Question about computing Jacobians of transformations

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
Boorglar
Messages
210
Reaction score
10
Suppose I have the following transformation:

[tex] u = \frac{x}{x^2+y^2+z^2}[/tex]
[tex] v = \frac{y}{x^2+y^2+z^2}[/tex]
[tex] w = \frac{z}{x^2+y^2+z^2}[/tex]

Is there a fast way to calculate the determinant jacobian without having to deal with the whole 3x3 determinant?

I noticed that the inverse transformation is the same (switching x,y,z with u,v,w gives the equality again) but the determinant is not 1, so I don't really know if this can help.

Or would I really have to do it the long and boring way?
 
Physics news on Phys.org
Your inverse is wrong.

Sure there is a fast way, consider the slight generalization where the denominator is a function R so your case is R=x^2+y^2+z^2

then we have

[tex]J=<br /> \left|<br /> \begin{array}{ccc}<br /> u_x & u_y & u_z \\<br /> v_x & v_y & v_z \\<br /> w_x & w_y & w_z<br /> \end{array} \right|<br /> =\frac{1}{R^3}<br /> \left|<br /> \begin{array}{ccc}<br /> 1 - x R_x/R & -x R_y/R & -x R_z/R \\<br /> -y R_x/R & 1 - y R_y/R & -y R_z/R \\<br /> -z R_x/R & -z R_y/R & 1 - z R_z/R<br /> \end{array} \right| <br /> =\frac{1-(x R_x+y R_y+z R_z)/R}{R^3}[/tex]

The determinant is closely related to

[tex]\left|<br /> \begin{array}{ccc}<br /> a-U & -V & -W \\<br /> -U & b-V & -W \\<br /> -U & -V & c-W<br /> \end{array} \right| =abc-bc U-ac V-abW[/tex]
 
Last edited:
This function just divides each vector by the square of its length. A small cube alligned so that its base is tangent to a sphere centered at the origin will be shrunk in volume by a factor of the sixth power of the radius of the sphere. So the magnitude of the determinant is the reciprocal of the sixth power of the radius of the sphere.