I am currently trying to learn about Jacobians (self study). In particular struggling to understand the geometry of change in variables and why the determinant of the Jacobian is the scaling factor when going from $dudv \to dxdy$.
My current understanding is that the Jacobian represents the best approximation of a linear transformation of the change in a function given a tiny change in its inputs at a given point. At least in my head this makes sense as:
Let: $$ \begin{matrix} x = f_1(u,v) \\ y = f_2(u,v) \end{matrix} $$
Then based on the definition of the Jacobian:
$$ \left(\begin{matrix} dx \\ dy \end{matrix}\right) = J \cdot \left(\begin{matrix} du \\ dv \end{matrix}\right) $$
Where I get lost is how to relate this back to the transformation of $dxdy$. I tried to calculate it as follows though it doesn't work so am assuming I've made (several) invalid steps along the way...
$$ \left(\begin{matrix} dx \\ dy \end{matrix}\right) = J \cdot \left(\begin{matrix} du \\ dv \end{matrix}\right) = \left(\begin{matrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v}\\ \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \end{matrix}\right) \cdot \left(\begin{matrix} du \\ dv \end{matrix}\right) = \left(\begin{matrix} \frac{\partial x}{\partial u} \cdot du\ + \frac{\partial x}{\partial v} \cdot dv \\ \frac{\partial y}{\partial u} \cdot du\ + \frac{\partial y}{\partial v} \cdot dv \end{matrix}\right) $$
Thus:
$$ \begin{align} dxdy &= det\left[ \left(\begin{matrix} dx & 0 \\ 0 & dy \end{matrix}\right) \right]\\ \\&= det\left[ \left(\begin{matrix} \frac{\partial x}{\partial u} \cdot du\ + \frac{\partial x}{\partial v} \cdot dv & 0 \\ 0 & \frac{\partial y}{\partial u} \cdot du\ + \frac{\partial y}{\partial v} \cdot dv \end{matrix}\right) \right] \\ \\&= \left(\frac{\partial x}{\partial u} \cdot du\ + \frac{\partial x}{\partial v} \cdot dv \right) \cdot \left( \frac{\partial y}{\partial u} \cdot du\ + \frac{\partial y}{\partial v} \cdot dv \right) \end{align} \\ \\ \\ = \text{...?} $$
I know that this should resolve to $det(J)dudv$ but I just don't know how to equate that. Any hints / advice on where I might have gone conceptually wrong would be appreciated.
I have already read the answers to similar questions but they haven't helped me clarify where I've gone wrong :(


For the $2$-D Jacobian, consider a $1$-$1$ continuous transformation from $(x, y)$ to $(u, v)$. Then you would write $x=x(u, v)$ and $y=y(u, v)$, furthermore
\begin{align} \int \int_R f(x, y)\mathcal{d}x\mathcal{d}y = \int \int_{R'}f(x(u, v), y(u, v)) \left| \frac{\partial(x, y)}{\partial(u,v)}\right|\mathcal{d}u\mathcal{d}v \end{align}
Where the Region R in the $xy$-plane maps to the region R' in the $uv$-plane. Setting \begin{align} \left| \frac{\partial(x, y)}{\partial(u,v)}\right| = x_uy_v-x_vy_u \end{align} Now the transformation from R to R' distorts the cartesian 'flat' $xy$-plane to a distorted version in $u$ and $v$, which for small enough $(du, dv)$ rectangles map to parallelograms, $\hat{du}=(du, 0)$ and $\hat{dv}=(dv, 0)$ with
\begin{align} \hat{du} = \begin{pmatrix} x_u & x_v\\ y_u & y_v\\ \end{pmatrix} \begin{pmatrix} du\\ 0 \\ \end{pmatrix} \end{align} and similarly for $\hat{dv}$.
The Area isnthen found by $$dA = |\hat{du} \times \hat{dv}|= \begin{pmatrix} x_u du\\ y_u du\\ \end{pmatrix} \times \begin{pmatrix} x_v dv\\ y_v dv\\ \end{pmatrix} = (x_u y_v - x_v y_u )du dv $$ I wonder if this helps?