Since 2010 · Powering 2M+ tool runs every month
Since 2010
Add to Chrome

My Toolbox

Automatic Mode

No saved tools yet.

Go Premium
Related tools
Divergence CalculatorDirectional Derivative CalculatorPartial Derivative CalculatorImplicit Derivative CalculatorCurvature CalculatorJacobian Matrix Calculator3D Distance Calculator
Home Page > Math > Calculus

Gradient Calculator (Multivariable)

Calculate the gradient vector of a multivariable function. Enter f(x, y) or f(x, y, z) to get every partial derivative, evaluate the gradient at a point, read its magnitude and direction, and view a 2D gradient field.

Free to useNo sign-up requiredInstant Results
Gradient Calculator (Multivariable)Try it now — free ▼
Examples:
Supported: x^2, sin(x), cos(y), exp(x), ln(x), sqrt(x), pi, e  |  Use ^ for powers, * for multiplication
Comma-separated, e.g. x, y or x, y, z
Coordinates matching each variable
GRADIENT PREVIEW
Enter f and variables to preview

Embed Gradient Calculator (Multivariable) Widget

Video Guide: Gradient Calculator (Multivariable)

About Gradient Calculator (Multivariable)

The Gradient Calculator (Multivariable) computes the gradient vector ∇f of any multivariable function. Enter a function like \(x^2 + y^2\), \(\sin(x)\cos(y)\), or \(xyz\), specify your variables, and optionally evaluate at a specific point. Get all partial derivatives symbolically, the gradient vector, its magnitude and unit direction, a step-by-step MathJax solution, and for 2-variable functions, an interactive gradient vector field with contour lines.

What Is the Gradient?

The gradient of a scalar-valued multivariable function \(f(x_1, x_2, \ldots, x_n)\) is a vector of all its first-order partial derivatives:

$$\nabla f = \left\langle \frac{\partial f}{\partial x_1}, \frac{\partial f}{\partial x_2}, \ldots, \frac{\partial f}{\partial x_n} \right\rangle$$

The gradient is one of the most important concepts in multivariable calculus, optimization, physics, and machine learning. It generalizes the single-variable derivative to higher dimensions.

Key Properties of the Gradient

Direction of Steepest Ascent
∇f points in the direction where f increases most rapidly.
📏
Maximum Rate
‖∇f‖ gives the maximum rate of increase at that point.
Perpendicular to Level Curves
∇f is always orthogonal to the contour lines (level sets) of f.
🎯
Critical Points
Where ∇f = 0, you have a potential max, min, or saddle point.

Gradient Formulas and Identities

IdentityFormula
Gradient of sum\(\nabla(f + g) = \nabla f + \nabla g\)
Scalar multiple\(\nabla(cf) = c \nabla f\)
Product rule\(\nabla(fg) = f\nabla g + g\nabla f\)
Quotient rule\(\nabla(f/g) = \frac{g\nabla f - f\nabla g}{g^2}\)
Chain rule\(\nabla(h \circ f) = h'(f) \cdot \nabla f\)
Directional derivative\(D_{\mathbf{u}} f = \nabla f \cdot \mathbf{u}\)

Applications of the Gradient

FieldApplicationWhat the Gradient Represents
Machine LearningGradient DescentDirection to update weights to minimize loss
PhysicsElectric field\(\mathbf{E} = -\nabla V\) (negative gradient of potential)
Fluid DynamicsPressure gradientForce driving fluid flow
Image ProcessingEdge detectionGradient magnitude identifies edges
OptimizationLagrange multipliersConstraint optimization via ∇f = λ∇g
GeographyTerrain analysisDirection and steepness of steepest slope

How to Use the Gradient Calculator

  1. Enter the function: Type your multivariable function using standard notation. Use ^ for exponents (e.g., x^2), * for multiplication, and standard functions like sin(x), cos(y), exp(x), ln(x), sqrt(x). Implicit multiplication is supported (e.g., 2x = 2*x).
  2. Specify variables: Enter your variable names separated by commas (e.g., x, y or x, y, z). The calculator computes partial derivatives with respect to each variable.
  3. Enter an evaluation point (optional): Provide coordinate values matching each variable to evaluate the gradient numerically. You can use constants like pi and e.
  4. Click Compute Gradient: View the symbolic gradient, partial derivatives, numerical evaluation, magnitude, unit direction, and the step-by-step solution.
  5. Explore the visualization: For 2-variable functions, examine the gradient vector field showing arrows (gradient direction and magnitude) overlaid on contour lines, with the evaluation point highlighted.

Worked Example

Find the gradient of \(f(x, y) = x^2 + y^2\) at the point \((1, 2)\):

Step 1: Compute partial derivatives: \(\frac{\partial f}{\partial x} = 2x\), \(\frac{\partial f}{\partial y} = 2y\)

Step 2: The gradient is \(\nabla f = \langle 2x, 2y \rangle\)

Step 3: Evaluate at \((1, 2)\): \(\nabla f(1, 2) = \langle 2, 4 \rangle\)

Step 4: Magnitude: \(\|\nabla f\| = \sqrt{4 + 16} = \sqrt{20} \approx 4.472\). This means the function increases fastest in direction \(\langle 2, 4 \rangle\) at rate ≈ 4.472.

FAQ

What is the gradient of a multivariable function?
The gradient of a multivariable function f is a vector of all its partial derivatives. For f(x,y), the gradient is ∇f = (∂f/∂x, ∂f/∂y). It points in the direction of steepest ascent and its magnitude gives the rate of steepest ascent. The gradient generalizes the concept of a derivative to functions of multiple variables.
How do you compute the gradient vector?
To compute the gradient, take the partial derivative of the function with respect to each variable independently (treating other variables as constants), then combine them into a vector. For example, for f(x,y) = x² + xy, the partial derivatives are ∂f/∂x = 2x + y and ∂f/∂y = x, so the gradient is ∇f = ⟨2x + y, x⟩.
What does the gradient tell you geometrically?
The gradient points in the direction of maximum increase of the function. Its magnitude equals the rate of that maximum increase. The gradient is always perpendicular (orthogonal) to the level curves or level surfaces of the function. Moving in the opposite direction of the gradient (−∇f) gives the direction of steepest descent.
What is the gradient used for in machine learning?
In machine learning, gradient descent uses the gradient to minimize loss functions. The algorithm iteratively moves parameters in the opposite direction of the gradient (steepest descent) to find values that minimize prediction error. Variants like stochastic gradient descent (SGD), Adam, and RMSprop are core optimization algorithms for training neural networks.
What happens when the gradient is zero?
When the gradient equals the zero vector at a point, that point is called a critical point (or stationary point). Critical points can be local maxima, local minima, or saddle points. The second derivative test using the Hessian matrix helps classify which type of critical point it is: if the Hessian is positive definite it's a minimum, negative definite it's a maximum, and indefinite it's a saddle point.

Reference this content, page, or tool as:

"Gradient Calculator (Multivariable)" at https://MiniWebtool.com/gradient-calculator-multivariable/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-04-07

You can also try our AI Math Solver GPT to solve your math problems through natural language question and answer.

Calculus:

Top & Updated:

Gradient GeneratorCurl CalculatorDerivative CalculatorView all →
Home Page > Math > Calculus > Gradient Calculator (Multivariable)