We wish to find \(\xb\) that makes \(\fb\) equal to the zero vectors, so let’s choose \(\xb_{1}\) so that
\begin{equation*}
\fb(\xb_{0}) + D\fb(\xb_{0}) (\xb_{1} -\xb_{0}) = \mathbf{0}\text{.}
\end{equation*}
Since \(D\fb(\xb_{0})\) is a square matrix, we can solve this equation by
\begin{equation*}
\xb_{1} = \xb_{0} - (D\fb(\xb_{0}))^{-1}\fb(\xb_{0})\text{,}
\end{equation*}
provided that the inverse exists. The formula is the vector equivalent of the Newton’s method formula we learned before. However, in practice we never use the inverse of a matrix for computations, so we cannot use this formula directly. Rather, we can do the following. First solve the equation
\begin{equation*}
D\fb(\xb_{0}) \Delta \xb = -\fb(\xb_{0})\text{,}
\end{equation*}
where we want to have
\begin{equation*}
\Delta \xb = \xb_{1} - \xb_{0}\text{.}
\end{equation*}
Since \(D\fb(\xb_{0})\) is a known matrix and \(-\fb(\xb_{0})\) is a known vector, this equation is just a system of linear equations, which can be solved efficiently and accurately. Once we have the solution vector \(\Delta \xb\text{,}\) we can obtain our improved estimate \(\xb_{1}\) by
\begin{equation*}
\xb_{1} = \xb_{0} + \Delta \xb\text{.}
\end{equation*}