Based on: Change of Variables and the Jacobian

Rough Idea

  1. define an integral that integrates over the basis variables (this integral is hard to compute)
  2. define another integral that integrates over a different set of basis variables (this integral is easy to compute)
  3. add the scale factor function to the second integral and solve (this will be the answer for the first integral)

Step Through

Say we have a function 𝑓: ℝ2 → ℝ2 defined as:

Say we want to take the integration of a scalar-valued function 𝑓(𝑥,𝑦) over the variables 𝑥 and 𝑦 such that the point (𝑥, 𝑦)∊𝐷.

For this article, we say that this integration above is hard to compute. However, if we could consider some other basis variables let’s say (𝜃 and 𝑟) instead of the original basis (𝑥 and 𝑦) such that reformulating the integration under the new basis will be easy to compute.

However, these 2 integrals are NOT the same:

This is because areas/volume are warped when switching between basis (𝜃,𝑟) and (𝑥,𝑦). To account for the warping, we need to add a scale factor function 𝑠(𝜃,r) such that:

This scale factor function 𝑠(𝜃,r) is defined as the determinant of the matrix that captures the “local linearity” transformations at each point (𝜃,r). This matrix is the Jacobian Matrix.

Since we have computed our integral in (𝜃,r) basis and want to express that in (𝑥,𝑦) basis. We need to convert our basis variables (𝑥 and 𝑦) to (𝜃 and 𝑟). We need to represent 𝑥 in terms of 𝜃 and 𝑟. We also need to represent 𝑦 in terms of 𝜃 and 𝑟.

Our Jacobian matrix is then:

To compute the scale factor function we need to compute the determinant of the Jacobian:

Thus 𝑠(𝜃,𝑟) = 𝑟:

Relation to Integration by Substitution

This is similar to Integration by Substitution where:

  • the Jacobian Matrix is a 1⨯1 matrix containing just the element 𝑔’(𝑥)
  • thus the scale factor function is 𝑔’(𝑥)

Integration by Substitution of a definite integral states:

Resources