3/7/2016 1 bisection method electrical engineering majors authors: autar kaw, jai paul

28
01/20/22 http:// numericalmethods.eng.usf.edu 1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul http://numericalmethods.eng.u sf.edu Transforming Numerical Methods Education for STEM Undergraduates

Upload: leona-russell

Post on 19-Jan-2018

245 views

Category:

Documents


0 download

DESCRIPTION

3 Basis of Bisection Method Theorem An equation f(x)=0, where f(x) is a real continuous function, has at least one root between x l and x u if f(x l ) f(x u ) < 0. Figure 1 At least one root exists between the two points if the function is real, continuous, and changes sign.

TRANSCRIPT

Page 1: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

05/14/23http://

numericalmethods.eng.usf.edu 1

Bisection Method

Electrical Engineering Majors

Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.eduTransforming Numerical Methods Education for STEM

Undergraduates

Page 2: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

Bisection Method

http://numericalmethods.eng.usf.edu

Page 3: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu3

Basis of Bisection MethodTheorem

x

f(x)

xu x

An equation f(x)=0, where f(x) is a real continuous function, has at least one root between xl and xu if f(xl) f(xu) < 0.

Figure 1 At least one root exists between the two points if the function is real, continuous, and changes sign.

Page 4: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

x

f(x)

xu x

http://numericalmethods.eng.usf.edu4

Basis of Bisection Method

Figure 2 If function does not change sign between two points, roots of the equation may still exist between the two points.

xf 0xf

Page 5: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

x

f(x)

xu x

http://numericalmethods.eng.usf.edu5

Basis of Bisection Method

Figure 3 If the function does not change sign between two points, there may not be any roots for the equation between the two points.

x

f(x)

xu x

xf 0xf

Page 6: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

x

f(x)

xu x

http://numericalmethods.eng.usf.edu6

Basis of Bisection Method

Figure 4 If the function changes sign between two points, more than one root for the equation may exist

between the two points.

xf 0xf

Page 7: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu7

Algorithm for Bisection Method

Page 8: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu8

Step 1Choose x and xu as two guesses for the root such that f(x) f(xu) < 0, or in other words, f(x) changes sign between x and xu. This was demonstrated in Figure 1.

x

f(x)

xu x

Figure 1

Page 9: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

x

f(x)

xu x

xm

http://numericalmethods.eng.usf.edu9

Step 2Estimate the root, xm of the equation f (x) = 0 as the mid point between x and xu as

xx

m = xu

2

Figure 5 Estimate of xm

Page 10: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu10

Step 3Now check the following

a) If , then the root lies between x and xm; then x = x ; xu = xm.

b) If , then the root lies between xm and xu; then x = xm; xu = xu.

c) If ; then the root is xm. Stop the algorithm if this is true.

0ml xfxf

0ml xfxf

0ml xfxf

Page 11: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu11

Step 4

xx

m = x u

2

100

newm

oldm

new

a xxx

m

root of estimatecurrent newmx

root of estimate previousoldmx

Find the new estimate of the root

Find the absolute relative approximate error

where

Page 12: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu12

Step 5

Is ?

Yes

No

Go to Step 2 using new upper and lower

guesses.

Stop the algorithm

Compare the absolute relative approximate error with the pre-specified error tolerance .

as

sa

Note one should also check whether the number of iterations is more than the maximum number of iterations allowed. If so, one needs to terminate the algorithm and notify the user about it.

Page 13: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

3843 ln10775468.8ln10341077.210129241.11 RRT

http://numericalmethods.eng.usf.edu13

Example 1Thermistors are temperature-measuring devices based on the principle that the thermistor material exhibits a change in electrical resistance with a change in temperature. By measuring the resistance of the thermistor material, one can then determine the temperature.

Figure 5 A typical thermistor.

For a 10K3A Betatherm thermistor, the relationship between the resistance, R, of the thermistor and the temperature is given by

where T is in Kelvin and R is in ohms.

Thermally conductive epoxy coating

Tin plated copper alloy lead wires

Page 14: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu14

Example 1 Cont.For the thermistor, error of no more than ±0.01oC is acceptable. To find the range of the resistance that is within this acceptable limit at 19oC, we need to solve

and

Use the bisection method of finding roots of equations to find the resistance R at 18.99oC.

a) Conduct three iterations to estimate the root of the above equation.

b) Find the absolute relative approximate error at the end of each iteration and the number of significant digits at least correct at the end of each iteration.

3843 ln10775468.8ln10341077.210129241.115.27301.19

1 RR

3843 ln10775468.8ln10341077.210129241.115.27399.18

1 RR

Page 15: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu15

Example 1 Cont.

3384 10293775.2ln10775468.8ln10341077.2)( RRRf

11000 12000 13000 14000 15000

0.00006

0.00004

0.00002

0.00002

Entered function on given interval

Figure 6 Graph of the function f(R).

Page 16: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu16

Example 1 Cont.Choose the bracket

5

5

107563.114000

104536.411000

1400011000

f

f

RR

u

11000 12000 13000 14000 15000

0.00008

0.00006

0.00004

0.00002

0.00002

0.00004

Entered function on given interval with upper and lower guesses

Solution

01400011000 ffRfRf u

There is at least one root between and .

R uRFigure 7 Checking the sign change between the bracket.

Page 17: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

The absolute relative approximate error cannot be calculated as we do not have a previous approximation.

http://numericalmethods.eng.usf.edu17

125002

1400011000

mR

5101655.112500 f11000 12000 13000 14000 15000

0.00008

0.00006

0.00004

0.00002

0.00002

0.00004

Entered function on given interval with upper and lower guesses and estimated root

Example 1 Cont.Iteration 1The estimate of the root is

Figure 8 Graph of the estimate of the root after Iteration 1.

The root is bracketed between and . The lower and upper limits of the new bracket are 14000 ,12500 ul RR

uRmR

01250011000 ffRfRf ml

Page 18: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

11000 12000 13000 14000 15000

0.00008

0.00006

0.00004

0.00002

0.00002

0.00004

Entered function on given interval with upper and lower guesses and estimated root

The root is bracketed between and . The lower and upper limits of the new bracket are

Example 1 Cont.

http://numericalmethods.eng.usf.edu18

01325012500

103599.313250

132502

1400012500

6

ffRfRf

f

R

ml

m

Iteration 2The estimate of the root is

Figure 9 Graph of the estimate of the root after Iteration 2. 13250 ,12500 ul RR

mRlR

Page 19: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

Example 1 Cont.

http://numericalmethods.eng.usf.edu19

%6604.5

10013250

1250013250

100

newm

oldm

newm

a RRR

The absolute relative approximate error after Iteration 2 is

None of the significant digits are at least correct in the estimated root as the absolute relative approximate error is greater than 5%.

Page 20: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

11000 12000 13000 14000 15000

0.00008

0.00006

0.00004

0.00002

0.00002

0.00004

Entered function on given interval with upper and lower guesses and estimated root

http://numericalmethods.eng.usf.edu20

01287512500

100403.412875

128752

1325012500

6

ffRfRf

f

R

ml

m

The root is bracketed between and . The lower and upper limits of the new bracket are

Iteration 3The estimate of the root is

Figure 10 Graph of the estimate of the root after Iteration 3. 13250 ,12875 ul RR

uRmR

Example 1 Cont.

Page 21: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

Example 1 Cont.

http://numericalmethods.eng.usf.edu21

%9126.2

10012875

1325012875

100

newm

oldm

newm

a RRR

The absolute relative approximate error after Iteration 3 is

The number of significant digits that are at least correct in the estimated root is 1 as the absolute relative approximate error is less than 5%.

Page 22: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu22

ConvergenceTable 1 Root of f(R) =0 as function of the number of iterations for bisection method.

aIteration Rl Ru Rm % f(Rm)

12345678910

11000125001250012875130631306313063130631307413074

14000140001325013250132501315613109130861308613080

12500132501287513063131561310913086130741308013077

----------5.66042.91261.43540.712590.357570.179100.0896330.0447960.022403

1.1655×10−5

3.3599×10−6

−4.0403×10−6

−3.1417×10−7

1.5293×10−6

6.0917×10−7

1.4791×10−7

−8.3022×10−8

3.2470×10−8

−2.5270×10−8

Page 23: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu23

Advantages Always convergent The root bracket gets halved with

each iteration - guaranteed.

Page 24: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu24

Drawbacks Slow convergence If one of the initial guesses is close

to the root, the convergence is slower

Page 25: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu25

Drawbacks (continued) If a function f(x) is such that it just

touches the x-axis it will be unable to find the lower and upper guesses.

f(x)

x

2xxf

Page 26: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

http://numericalmethods.eng.usf.edu26

Drawbacks (continued) Function changes sign but root does

not exist

f(x)

x

x

xf 1

Page 27: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

Additional ResourcesFor all resources on this topic such as digital audiovisual lectures, primers, textbook chapters, multiple-choice tests, worksheets in MATLAB, MATHEMATICA, MathCad and MAPLE, blogs, related physical problems, please visit

http://numericalmethods.eng.usf.edu/topics/bisection_method.html

Page 28: 3/7/2016  1 Bisection Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul

THE END

http://numericalmethods.eng.usf.edu