High order in systems: Traub, Golden Ratio, NA, Jarratt and RN
Composition with Newton and frozen Jacobian: how to gain one order by composition without evaluating new Jacobians, and the Traub, Golden Ratio, NA, vector Jarratt and RN (order 5-6) families.
Composition with frozen Jacobian
Composing a method of order p, z(k)=Φ(x(k),y(k)), with a full Newton step gives order 2p, but requires evaluating (and factorizing) a new Jacobian at z(k). The cheap alternative is to reuse the already factorized Jacobian:
z(k)=Φ(x(k),y(k)),x(k+1)=z(k)−[F′(x(k))]−1F(z(k))
The simplest example is the vector Traub method: Newton (order 2) followed by one frozen-Jacobian step, of order 2+1=3:
Generalizing the idea with weighted steps ηj(x(k))=x(k)−aj[F′(x(k))]−1F(x(k)) yields the family x(k+1)=x(k)−[F′(x(k))]−1(∑jbjF(ηj(x(k)))). The two-step member is the Golden Ratio method, of order 3, so named because its parameters involve 5: a=2−1±5, b=23±5.
Composing Golden Ratio with a frozen-Jacobian step yields the NA method, of order 4 with a single Jacobian evaluation per iteration. Its efficiency indices beat Newton's and Golden Ratio's for every n>1: INA=41/(n2+3n)>IGR=31/(n2+2n)>IN=21/(n2+n).
In exchange, it evaluates two Jacobians and solves linear systems with two different coefficient matrices: IJ=41/(2n2+n). Composing it with a Newton variant yields the RN method, with a third step x(k+1)=z(k)−[aF′(x(k))+bF′(y(k))]−1F(z(k)).