Newton for nonlinear systems

  • more complicated with multiple variables and equations
  • hard problem to tackle in the general case
  • based on Taylor series: linear part of function near x plus higher order term

f(x+h)=f(x)+J(x)h+O(||h||2)

Multidimensional Newton’s method:

Given f and a starting value x1, for each k=1,2,3,...:

  1. Compute yk=f(xk) and Ak=f(xk)
  2. Solve linear system Aksk=yk for the Newton step sk
  3. Let xk+1=xk+sk