Two Newton steps by hand on the system x2+y2=1, x=y: building the Jacobian, solving each step's 2×2 linear system and visible quadratic convergence towards (2/2,2/2).
Solution
ExampleIntersection of circle and bisector
Approximate with two Newton steps the positive solution of the system x2+y2=1, x−y=0, starting from x(0)=(1,1). The exact solution is α=(22,22)=(0.7071068,0.7071068).
Function and Jacobian:
F(x,y)=[x2+y2−1x−y],F′(x,y)=[2x12y−1]
First step: at (1,1), F=(1,0)T and the linear system F′u=F is 2u1+2u2=1, u1−u2=0, with solution u=(41,41):
x(1)=(1,1)−(41,41)=(0.75,0.75)
Second step: at (0.75,0.75), F=(0.125,0)T and the system is 1.5u1+1.5u2=0.125, u1−u2=0, that is, u=(241,241):
The errors are 0.293→0.043→0.0012: each step roughly squares the error, the signature of quadratic convergence. A third step would give 0.7071078, with error 10−6. (In this symmetric system the iteration reduces to scalar Newton for 2x2=1.)