The Secant Method

6.2.2 The Secant Method

A serious drawback to the method of false position is that ultimately one endpoint of the sequence of bracketing intervals will become fixed and therefore the length (b n −a n ) will not tend to zero. This can be avoided and convergence substantially improved by always using the secant through the last two points, (x n −1 , f (x n −1 )) and (x n , f (x n )) . The next approximation x n +1 is determined as the abscissa of the point of intersection between this secant and the x-axis; see Figure 6.2.2.

Figure 6.2.2. The secant method.

Given initial approximations x −1 = a and x 0 = b, approximations x 1 ,x 2 ,,x 3 ,... are computed by

assuming that f (x n ) n −1 ) . This is the secant method, which historically predates Newton’s method. Notice that although regula falsi and the secant method require two initial approxi- mations to the root, only one function evaluation per step is needed. The iteration, which is of the form x n +1 = φ(x n ;x n −1 ) , is not a fixed-point iteration as defined in Sec. 6.1.4. Sometimes methods of this form, which use old information at points x n −k , k ≥ 1, are called fixed-point iterations with memory.

6.2. Methods Based on Interpolation 629 When the secant method converges |x n −x n −1 | will eventually become small. The

quotient (x n −x n −1 )/(f (x n ) −f (x n −1 )) will then be determined with poor relative accuracy. If x n and x n −1 are both very close to the root α and not bracketing α, then the resulting rounding error in x n +1 can become very large. Fortunately, from the error analysis below it follows that the approximations in general are such that |x n −x n −1 | ≫ |x n − α| and the dominant contribution to the roundoff error in x n +1 comes from the error in f (x n ) . Note that (6.2.3) should not be “simplified” to the form

since this formula can give rise to severe difficulties with cancellation when x n ≈x n −1 and

0. Even (6.2.3) is not always safe to use. We must take care to avoid overflow or division by zero. Without restriction we can assume that |f (x n −1 ) | ≥ |f (x n ) |>

f (x n )f (x n −1 )>

0 (otherwise renumber the two points). Then, s n can be computed without risk of overflow from

f (x n −1 ) where the division with 1 − s n is only carried out if 1 − s n is large enough.

1−s n

Example 6.2.2.

To illustrate the improved convergence of the secant method we consider once again the equation f (x) = (x/2) 2 − sin x = 0 with initial approximations x 0 = 1.5, x 1 = 2. The

result is shown in the following table. n

5 1.933753 762827 Note that the approximations x 1 and x 2 are the same as for the false-position method, but

here x 4 is correct to eight decimals and x 5 to twelve decimals. The rapid convergence is partly because x 1 = 2 is quite a good initial approximation. But note that although the root is bracketed by the initial intervals [x 0 ,x 1 ] and [x 1 ,x 2 ] it lies outside the interval [x 2 ,x 3 ].

Assume that f is twice continuously differentiable. Then according to Newton’s interpolation formula with error term (Theorem 4.3.1) we have

f ′′ (ζ n )

f (x) = f (x n ) + (x − x n ) [x n −1 ,x n ]f + (x − x n −1 )(x −x n ) , (6.2.5)

630 Chapter 6. Solving Scalar Nonlinear Equations where ζ n ∈ int(x, x n −1 ,x n ) and

To derive an asymptotic formula for the secant method we put x = α in (6.2.5) and subtract the secant equation 0 = f (x n ) + (x n +1 −x n ) [x n −1 ,x n ]f . Since f (α) = 0 we get

(α −x n ) [x n ,x n ]f + (α − x n )(α −x n )f ′′ +1 −1 −1 (ζ n )/ 2 = 0,

where ζ n ∈ int(α, x n −1 ,x n ) . According to the mean value theorem, we have

[x n −1 ,x n ]f = f ′ (ζ n ′ ), ζ n ′ ∈ int(x n −1 ,x n ),

and it follows that

The ratios ǫ n +1 /(ǫ n ǫ n −1 ) in Example 6.2.2 are equal to 0.697, 0.527, 0.550, n = 1 : 3, which compares well with the limiting value 0.543 of 1 2 f ′′ (α)/f ′ (α) .

From (6.2.6) it can be deduced that the secant method always converges from starting values x 0 ,x 1 sufficiently close to α. For this to be true it suffices that the first derivative

f ′ (x) is continuous, since then

f ′ (ξ n )

ǫ n +1 = 1− ′ ǫ n , ξ n ∈ int(x n , α), ζ n ∈ int(x n ,x n ).

But in the secant method there is no guarantee that the computed sequence of approximations stays in the initial interval [x 0 ,x 1 ]. Unlike the steady convergence of the bisection method

things can go seriously wrong using the secant method! A remedy will be discussed in Sec. 6.2.4.

The following theorem gives the order of convergence for the secant method.

Theorem 6.2.1.

Suppose that f (x) is twice continuously differentiable and that in a neighborhood I

of the root α, containing x 0 ,x 1 ,x 2 ,...,x n , we have

1 ( ( f ′′ (y) ( (

2 ( f ′ (x) ( ≤ M, x, y ∈ I.

Denote by ǫ n the error in the nth iterate of the secant iteration Let q be the unique positive root of the equation µ 2 − µ − 1 = 0 and set

(6.2.7) Then it holds that

K = max M |ǫ 0 |, (M|ǫ 1 |) 1/q .

i.e., the secant iteration has convergence order equal to q = (1 + 5)/2 = 1.618 . . . .

6.2. Methods Based on Interpolation 631 Proof. The proof is by induction. From the choice of K it follows that (6.2.8) is trivially

true for n = 0, 1. Suppose that (6.2.8) holds for n and n − 1. Then since q 2 = q + 1 it follows using the assumption and (6.2.6) that

K q . (6.2.9)

To compare the efficiency of the secant method and Newton’s method, which is quadratically convergent, we use the efficiency index introduced in Sec. 6.1.5. Assume that the work to compute f ′ (x) is θ times the amount of work required to compute f (x). Then, with the same amount of work we can perform k(1 + θ) iterations with the secant method

k( and k iterations with Newton’s method. Equating the errors we get (mǫ 1+θ) 0 ) = (mǫ 0 ) p ,

where q = 1.618 . . . . Hence the errors are the same for both methods when p k =2 or

which gives θ = 0.4404 . . . . Thus, from this analysis we conclude that if θ > 0.44, then the secant method is asymptotically more efficient than Newton’s method.

In Example 6.2.2 we can observe that the error ǫ n =x n −α n changes sign at every third step. Hence, in this example,

α ∈ int(x n +1 −x n ), n = 0, 1, 3, 4, . . . ,

i.e., the root α is bracketed by x n and x n +1 except for every third step . We shall show that this is no coincidence. Assume that x n ∈ (a, b), n = 0, 1, 2, . . . , and that f ′ (x)

f ′′ (x) does not change sign in (a, b). Then from (6.2.6) it follows that the ratio

ǫ n +1 ǫ n ǫ n −1

0, it follows that the sign of ǫ n must change every third step according to one of the following two schemes (verify this!):

will have constant sign for all n. Then if α ∈ int(x 0 ,x 1 ) and ǫ 0 ǫ 1 <

Hence convergence for the secant method, if it occurs, will take place in a waltz rhythm! This means that at every third step the last two iterates x n −1 and x n will not always bracket the root.

Dokumen yang terkait

Analisis Komparasi Internet Financial Local Government Reporting Pada Website Resmi Kabupaten dan Kota di Jawa Timur The Comparison Analysis of Internet Financial Local Government Reporting on Official Website of Regency and City in East Java

19 819 7

ANTARA IDEALISME DAN KENYATAAN: KEBIJAKAN PENDIDIKAN TIONGHOA PERANAKAN DI SURABAYA PADA MASA PENDUDUKAN JEPANG TAHUN 1942-1945 Between Idealism and Reality: Education Policy of Chinese in Surabaya in the Japanese Era at 1942-1945)

1 29 9

Improving the Eighth Year Students' Tense Achievement and Active Participation by Giving Positive Reinforcement at SMPN 1 Silo in the 2013/2014 Academic Year

7 202 3

An Analysis of illocutionary acts in Sherlock Holmes movie

27 148 96

The Effectiveness of Computer-Assisted Language Learning in Teaching Past Tense to the Tenth Grade Students of SMAN 5 Tangerang Selatan

4 116 138

The correlation between listening skill and pronunciation accuracy : a case study in the firt year of smk vocation higt school pupita bangsa ciputat school year 2005-2006

9 128 37

Existentialism of Jack in David Fincher’s Fight Club Film

5 71 55

Phase response analysis during in vivo l 001

2 30 2

The Risk and Trust Factors in Relation to the Consumer Buying Decision Process Model

0 0 15

PENERAPAN ADING (AUTOMATIC FEEDING) PINTAR DALAM BUDIDAYA IKAN PADA KELOMPOK PETANI IKAN SEKITAR SUNGAI IRIGASI DI KELURAHAN KOMET RAYA, BANJARBARU Implementation of Ading (Automatic Feeding) Pintar in Fish Farming on Group of Farmer Close to River Irriga

0 0 5