I have a function $g(x,y) = 1-(xy-3)^2$. Starting at $(x,y) = (0,0)$, is it possible to apply one step of the steepest ascent method to the problem $\underset{(x,y)\in R^2}{max}$ $g(x,y)$.
The gradient I've obtained is $\triangledown g$ = $((-2xy^2 +6y), (-2x^2y +6x))$. $\triangledown g(0,0) = (0,0)$ and $X_0 + t\triangledown g(X_0) = (0,0) $.
When I applied the step, I still got $(0,0)$ and is it what we should get when we start with the initial point of $(0,0)$?