Theory of Jacobians in 2D

Foundational Definitions

We have seen that the Jacobian matrix for a transformation

F:  x(u,v), y(u,v)

 from R2 to R2 is defined by

J_F = Matrix[(x_u,x_v),(y_u,y_v)

This matrix is seen as a transformation  from R2 to R2 that is the best linear approximation of the transformation F.  When working with Jacobians, we usually write a point as a column vector.  For example, instead of writing the point (2,3) we write it as

2 on top of 3

In general we define

J_F(u,v) = (x_u*u+x_v*v,y_u*u+y_v*v)

It is easier to understand this by looking at an example.


Example

Let F be the transformation defined by

x(u,v)  =  u2 - 3uv,   y(u,v)  =  u3 +5v2

 

Find JF evaluated at the point (-1,2).

Solution

First find the Jacobian by calculating the partial derivatives.

J_F  =  [(2u-3v,-3u),(3u^2,10v)]

Now plug in (-1,2) to get:

J_F=[(-8,3),(3,20)]

Finally, multiply by the column vector:

[(-8,2),(3,20)](-1,2)= (14,37)


Addition and Scalar Multiplication of Jacobians and Matrices

Let F and G both be differentiable transformations from R2 to R2 and let a be a real number.  Then if we think of a point (x,y) as a vector, we can define the sum of the two transformations as follows.

(F+G)(u,v) = F(u,v) + G(u,v)

and

aF([u,v])  =  a(F([u,v)])

 

This is just doing the obvious thing as we see in the following example.


Example Let

F:  x(u,v) = u - 2v,    y(u,v) = u4 - u2v

G:  x(u,v) = u2,    y(u,v) = 2uv - v

Then

F + G:  x(u,v) = u - 2v + u2 ,    y(u,v) = u4 - u2v + 2uv - v

and

5F:  x(u,v) = 5u - 10v,    y(u,v) = 5u4 - 5u2v


We define addition and scalar multiplication of 2x2 matrices and follows.  Let a be a real number and let

A=[(a11,a12),(a21,a22)]  B=[(b11,b12),(b21,b22)]

Then

A+B  =  [(a11+b11,a12+b12),(a21+b21,a22+b22)]

Example

[(2,1),(-4,0)] + [(3,-5),(7,6)] = [(5,-4),(3,6)]


Several properties of Jacobians follow from properties of matrices.  The proofs are left as exercises.

Properties of Jacobians

Let F and G be differentiable transformations from R2 to R2 and let a be a real number.  Then

  1. JF+G  = JF + JG
  2. JaF  =  aJF

Multiplication of Matrices and Jacobians

Unlike scalar multiplication and addition of matrices, multiplication of two matrices is not as intuitive.  Although the definition looks contrived, it is just what is needed to describe the Jacobian of the composition of transformations.  To multiply two matrices, we think of the first matrix as a collection of row vectors and the second matrix as a collection of column vectors.  Then the ijth entry of the product matrix is the dot product of the ith row vector of the first matrix with the jth column vector of the second matrix.  This gives us the following definition. 

Definition of Matrix Multiplication

Let A and B be 2x2 matrices.  Then

AB=[(a11,a12),(a21,a22)][(b11,b12),(b21,b22)]=[(a11b11+a12b21,a11b12+a12b22),(a21b11+a22b21,a21b12+a22b22)]


Example  Let

A=[(-1,0),(3,5)], B=[(2,4),(1,-3)]

Find AB

Solution

[(-1,0),(3,5)][(2,4),(1,-3)]=[(-2,-4),(11,-3)]


Now that we know how to multiply two matrices, we can state the main result about the composition of two transformations.

Theorem (Composition of Transformations)

Let F and G be two differentiable transformations  from R2 to R2 with Jacobian matrices JF = A  and JG = B  and let FoG be the transformation  from R2 to R2 that represents the composition of these two transformations.  Then

JFoG  =  AB

We leave the proof for you to do as an exercise.

We can think of the composition of two transformations as follows.  Consider G as the transformation that takes (u,v) to (s,t) and F as the transformation that takes (s,t) to (x,y).  Then the composition transformation takes (u,v) to (x,y).  Be careful about the order of operations.  Since these are functions, writing FoG means do G first and then F.

 

Exercises

For Exercises 1-4, find JF(P) for the given transformation F at the given point P.

1.  Fx(u,v) = u2 - 3v,     y(u,v) = 4uv,          P = (3,-2)

2.  Fx(u,v) = veu,     y(u,v) = 2u + v2,          P = (0,5)

3.  Fx(u,v) = ln(u + v),     y(u,v) = uv,          P = (3,-2)

4.  Fx(u,v) = sin(u - v),     y(u,v) = ucos(v),          P = (0,p/6)

For Exercises 5, 6, and 7, calculate the Jacobian of H in two ways.  First perform the arithmetic on the transformation and calculate the Jacobian of the result.  Then calculate the Jacobian of each and perform the arithmetic on the resulting matrices.

5.  H  =  F + G,     F: x(u,v) = 2u - 3v,     y(u,v) = uv2           G:  x(u,v) = u2 - 3v2,     y(u,v) = 5u - v

6.  H  =  F - G,     F: x(u,v) = cos(uv),     y(u,v) = 3u - 4v           G:  x(u,v) = 6u - 2v,     y(u,v) = 5u2

7.  H  =  2F - 3G,     F: x(u,v) = 3uev,     y(u,v) = ln v           G:  x(u,v) = v - 2uev,     y(u,v) = eu

For Exercises 8 and 9, calculate the Jacobian of H = F o G in two ways.  First find the composition of the two transformations and then calculate the Jacobian of the result.  Then find the Jacobian of each and multiply the two matrices.

8.  F: x(u,v) = u - 3v2,     y(u,v) = u3           G:  u(s,t) = s2et,     v(s,t) = 4s - t

9.  F: x(u,v) = 2uv,     y(u,v) = cos(u + 2v)           G:  u(s,t) = s/t,     v(s,t) = t2

 

10.  Let  F: x(u,v) = 3u - v,  y(u,v) = u2v3      Gu(s,t) = 3t, v(s,t) = est      Hs(m,n) = n2, t(m,n) = m/n

          Demonstrate that the Jacobian of the composition of the three transformations is the product of the
          three Jacobians, that is show that
JFoGoH = JF JG JH 

11.  Prove that JF+G  = JF + JG  for any differentiable transformations F and G from R2 to R2.

12.  Prove that JaF  = aJF  for any differentiable transformation F and real number a.

13.  Prove that JaF+bG  = aJF + bJG  for any differentiable transformations F and G from R2 to R2 and real numbers a and b.

14.  Prove that JFoG  =  JF JG for any differentiable transformations F and G from R2 to R2.