The two dimensional Newton-Raphson method is to find a zero root $(x_0,y_0)$ which satisfy
\begin{array}{*{20}{c}}
{f\left( {{x_0},{y_0}} \right) = 0} \\
{g\left( {{x_0},{y_0}} \right) = 0}
\end{array} by iteration.
However, now I have only one equation $f(x,y)=0$ and I want to find its zero root $(x_0,y_0)$, what improvement should I do to the the Newton-Raphson method?
If I add another equation $g(x,y)=0$, then the determinant of Jacobian matrix will be zero and the inverting of the Jacobian matrix wouldn't exist.