Compute ∂f/∂x and ∂f/∂y symbolically, evaluate at any point, and visualize the tangent slope on the corresponding 2D slice. Ideal for multivariable calculus, optimization, and machine learning gradients.
In multivariable calculus, the partial derivative measures how a function changes as one variable varies while others are held constant. For a function
Definition:
Similarly for
Our calculator leverages symbolic differentiation via math.js engine, applying derivative rules: power rule, product rule, quotient rule, chain rule, and transcendental derivatives. The result is simplified and then numerically evaluated at your specified point. The visualization step automatically extracts the slice
| Function Example | ∂f/∂x | ∂f/∂y | Gradient at (1,1) |
|---|---|---|---|
| (2, 2) | |||
| (cos1·cos1, -sin1·sin1) | |||
| (e, e) at (1,1) |
In deep learning, backpropagation computes partial derivatives of the loss function with respect to millions of weights. Each partial derivative tells how adjusting a single weight affects the overall error. Our calculator illustrates the core principle on a smaller scale — understanding ∂L/∂w is essential for every AI practitioner.