You have one equation and one unknown: draw the tangent, follow it to zero, repeat. That is the original Newton-Raphson method — a simple geometric trick that converges blindingly fast when it works.
But most engineering and scientific problems do not arrive as a single equation. A power-flow network, a chemical reaction at equilibrium, or the kinematics of a robot arm may involve dozens of nonlinear equations in dozens of unknowns, all tangled together. No single tangent line exists here — yet Newton's insight can be rescued.
The key is the Jacobian matrix: the array of all first-order partial derivatives of your functions with respect to your unknowns. At each iteration, Newton-Raphson for systems asks — if we pretend everything is linear right here, where would the system be zero? — and then steps there. The answer requires solving a linear system, not just dividing by a number, but the reward is the same dazzling quadratic convergence: the number of correct decimal digits roughly doubles every step.
Related reading: Newton-Raphson for a single equation gives the one-dimensional foundation this article builds on.
Comments
Loading comments...