Example data table
| Mode | Functions | Point | Expected determinant |
|---|---|---|---|
| 2D | u = x^2 + y^2, v = x*y | (x, y) = (1, 2) | ≈ 0 (near, due to chosen mapping point) |
| 2D | u = x, v = y | (x, y) = (3, 4) | 1 (identity mapping) |
| 3D | u = x, v = y, w = z | (1, 2, 3) | 1 (identity mapping) |
| 3D | u = x^2, v = y^2, w = z^2 | (1, 2, 3) | 8·x·y·z = 48 at (1,2,3) |
Notes: This calculator uses numerical derivatives, so results can vary slightly with step size.
Formula used
For a 2D transformation (u, v) = (u(x, y), v(x, y)), the Jacobian matrix is:
[∂v/∂x, ∂v/∂y]]
The Jacobian determinant is:
For 3D, the Jacobian is 3×3 and the determinant is computed using the standard cofactor expansion.
Partial derivatives are approximated with the central difference: ∂f/∂x ≈ (f(x+h) − f(x−h)) / (2h).
How to use this calculator
- Select 2D or 3D based on your transformation.
- Enter your functions using x, y, and optionally z.
- Choose an evaluation point and a small step size h.
- Press Calculate to see the matrix and determinant.
- Download CSV or PDF if you need a report.