The gradient of a function f(x,y) in two variables x and y is the vector function in R2 given by:
"< \\frac{ \\delta f} { \\delta x } (x,y) , \\frac{ \\delta f} { \\delta y } (x,y) >"
For example, suppose f(x,y) = x3 + y2
then, the gradient of f(x,y) is
"< \\frac{ \\delta f} { \\delta x } (x,y) , \\frac{ \\delta f} { \\delta y } (x,y) >"
"=< \\frac{ \\delta (x^3 + y^2 )} { \\delta x } , \\frac{ \\delta (x^3 + y^2 )} { \\delta y }>"
"= < 3x^2 , 2y>"
This is a vector in R2
So, the correct answer is option B.
Comments
Leave a comment