MA/CS/EGR 537: Assignment 6 Answers/Grading

(a) In order to simplify this part, let's introduce a change in the notation. Let

MethodOriginal notationChanges to
Newton ei(2) = k2 (ei-1(2))2 ei = k (ei-1)2
Newton-Chord ei = k (ei k3 (ei-1(3)) Ei = K ei-1

A table of error contractions looks like the following:

IterationNewtonNewton-Chord
2 k(e1)2 Ke1
3 k3(e1)4 K2e1
4 k7(e1)8 K3e1
5 k15(e1)16 K4e1
6 k31(e1)32 K5e1
7 k63(e1)64 K6e1
8 k127(e1)128 K7e1
9 k255(e1)256 K8e1
Under the assumptions of the problem, at some pair of iterations,
k2p-1(e1)2p ~ Kqe1,
where C2=2p and C3=q. So,
Kq ~ (ke1)2p-1.
Assuming that K=O(ke1), then q=C3~2C2-1. We get the desired result by an appropriate definition of the starting guess, namely the one after the first iteration.

(b) The first iteration is the same for both methods, namely

Cost: L = CN3 + (A+D)N2 + BN.

The rest of the iterations, the Newton method does the following:

Cost: L = CN3 + (A+D)N2 + BN.

The Newton-Chord method does the following:

Cost: M = AN2 + BN.

Total Costs:

(c) Ignore the first iteration. Without loss of generality, assume that C2 and C3 have been adjusted down by 1 each. Then, without loss of generality, we must only compare

C2 C N3 with C3 D N2 = 2C2 D N2.
Hence, the Newton-Chord method (3) is cheaper whenever
2C2 < (C/D)N.
This bound is independent of the sizes of N and C2. As a guide, however,
NC2
SmallLarge
Small(*)Newton
LargeNewton-Chord(*)
Note that (*) in the table means that the formula for the switch over should be used instead of intuition.

Cheers,
Craig C. Douglas