Ax_xiom
- 64
- 4
So the formula used to solve non-linear equations using the Newton-Raphson method is this $$ X_{k+1} = X_k - J^{-1}(X_k)F(X_k) $$ and instead of finding ##J^{-1}(X_k)##, we solve for the change that will be applied to ##X_k## (##\Delta X_k##) using this relation $$J(X_k) \Delta X_k = -F(X_k)$$ and the next iteration will be this $$ X_{k+1} = X_k + \Delta X_k $$ My question is that wouldn't you need to solve for ##J^{-1}(X_k)## anyways when doing that? If so, why do we do that step in the first place?