Lesson 5 of 15
The Jacobian Matrix
The Jacobian Matrix
When we change coordinates on a manifold, vectors and tensors transform. The transformation is governed by the Jacobian — the matrix of all partial derivatives of the coordinate change.
For a map with , the Jacobian at a point is:
Example: Polar-to-Rectangular
The map has Jacobian:
At : — the identity.
At : — .
Determinant
The determinant is the local volume scale factor: how much the map stretches areas. For polar coordinates, , so the area element in polar coords is .
Your Task
Implement jacobian(F, n) that takes a vector-valued function and returns a function J(point) that computes the Jacobian matrix at that point.
Python runtime loading...
Loading...
Click "Run" to execute your code.