When dealing with multivariable functions, the gradient vector is your best friend. It offers a way to understand how a function changes. The gradient vector, often denoted as \( abla f \), is a vector which consists of the partial derivatives of the function with respect to each variable.
It points in the direction where the function increases the most and its magnitude tells you how fast the function is increasing.
For the function \( f(x, y)=12-4x^2-y^2 \), the gradient at any point (x,y) is obtained by:
- Finding the partial derivatives \( \frac{\partial f}{\partial x} = -8x \) and \( \frac{\partial f}{\partial y} = -2y \).
- The gradient vector here would be \( \begin{bmatrix} -8x \ -2y \end{bmatrix} \).
Calculating the gradient at the point (1, 2) provides \( abla f(1,2) = \begin{bmatrix} -8 \ -4 \end{bmatrix} \). This vector holds all the information about how the function behaves around the point (1,2).