Multivariable calculus extends the concepts of single-variable calculus to functions of several variables.
Partial Derivatives and the Gradient
A partial derivative measures the rate of change of a multivariable function with respect to one variable, holding others constant. The Gradient is a vector of partial derivatives:
It points in the direction of the steepest ascent.
7print(f"Double integral of x*y over [0,1]x[0,2]: {area:.4f}")
Knowledge Check
If the partial derivative of f with respect to x is zero everywhere, what can we say about f?
Answer: f does not depend on x.
If the partial derivative of f with respect to x is zero everywhere, what can we say about f?
Vector Fields and Line Integrals
A vector field assigns a vector to every point in space. A line integral measures the work done by a force field along a path .
Knowledge Check
What is a conservative vector field?
Answer: A field where the line integral depends only on the endpoints.
What is a conservative vector field?
The Jacobian Matrix
The Jacobian matrix of a vector-valued function is the matrix of all first-order partial derivatives. It represents the best linear approximation of the function near a point.