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,...:
- Compute yk=f(xk) and Ak=f′(xk)
- Solve linear system Aksk=−yk for the Newton step sk
- Let xk+1=xk+sk