SlideShare a Scribd company logo
Solution of algebraic & transdental equation
with Newton Raphson method & Secant
method
1S.N.P.I.T. & R.C.
Presented by:
 130490106065 – Modi Nagma
 130490106085 – Patel Pinal
 140493106015 – Padhiyar Sagar
 140493106025 – Taylor Kishan
2S.N.P.I.T. & R.C.
Two Fundamental Approaches
1. Bracketing or Closed Methods
- Bisection Method
- False-position Method (Regula falsi).
2. Open Methods
- Newton-Raphson Method
- Secant Method
- Fixed point Methods
Roots of Equations
3S.N.P.I.T. & R.C.
Newton Raphson’s Method
 The equation for
Newton’s Method can
be determined
graphically!
4S.N.P.I.T. & R.C.
Continue.....
 The equation for Newton’s
Method can be determined
graphically!
 From the diagram tan Ө =
ƒ'(x0) = ƒ(x0)/(x0 – x1)
5S.N.P.I.T. & R.C.
Continue....
 The equation for Newton’s
Method can be determined
graphically!
 From the diagram tan Ө =
ƒ'(x0) = ƒ(x0)/(x0 – x1)
 Thus, x1=x0 -ƒ(x0)/ƒ'(x0).
6S.N.P.I.T. & R.C.
 In general, if the nth approximation is xn and f’(xn) ≠
0, then the next approximation is given by:
3
1
( )
12
'( )
n
n n
n
f x
x x
f x
  
Equation/Formula 2
Continue…
7S.N.P.I.T. & R.C.
Starting with x1 = 2, find the third
approximation x3 to the root of
the equation
x3 – 2x – 5 = 0
Example Of Newton Raphson’s
method
Example 1
8S.N.P.I.T. & R.C.
We apply Newton’s method with
f(x) = x3 – 2x – 5 and f’(x) = 3x2 – 2
 Newton himself used this equation to illustrate
his method.
 He chose x1 = 2 after some experimentation
because f(1) = -6, f(2) = -1 and f(3) = 16
Continue…
Example 1
9S.N.P.I.T. & R.C.
Equation 2 becomes:
Continue…
10S.N.P.I.T. & R.C.
3
2
2 5
1
3 2
n n
n n
n
x x
x x
x
 
  

With n = 1, we have:
Continue…..
11S.N.P.I.T. & R.C.
3
1 1
2 1 2
1
3
2
2 5
3 2
2 2(2) 5
2
3(2) 2
2.1
x x
x x
x
 
 

 
 


With n = 2, we obtain:
 It turns out that this third approximation x3 ≈ 2.0946
is accurate to four decimal places.
Continue….
12S.N.P.I.T. & R.C.
3
2 2
3 2 2
2
3
2
2 5
3 2
2.1 2(2.1) 5
2.1
3(2.1) 2
2.0946
x x
x x
x
 
 

 
 


 Use Newton’s method to find correct to eight
decimal places.
 First, we observe that finding is equivalent to
finding the positive root of the equation x6 – 2 = 0
 So, we take f(x) = x6 – 2
 Then, f’(x) = 6x5
Example 2
Newton Raphson’s method
6
2
6
2
13S.N.P.I.T. & R.C.
 So, Formula 2 (Newton’s method)
becomes:
Continue…
14S.N.P.I.T. & R.C.
6
1 5
2
6
n
n n
n
x
x x
x


 
 Choosing x1 = 1 as the initial approximation, we obtain:
 As x5 and x6 agree to eight decimal places, we
conclude that to eight decimal places.
Continue…
2
3
4
5
6
1.16666667
1.12644368
1.12249707
1.12246205
1.12246205
x
x
x
x
x





6
2 1.12246205
15S.N.P.I.T. & R.C.
Newton Raphson’s method
 Use Newton’s method to find correct to four
decimal places.
 Where, N=12
q=3
= 1
S.N.P.I.T. & R.C. 16
 1 1
1
1n n q
n
N
x x q
q x
 
 
   
 
0x
3
12
continue….
 So, Formula 2 (Newton’s method) for find out qth
root
becomes:
S.N.P.I.T. & R.C. 17
   1 3 1
1 12
3 1 1
3
n n
n
x x
x
 
 
   
 
1 4.6667x 
Continue….
 Choosing x1 = 1 as the initial approximation, we obtain:
 As x5 and x6 agree to four decimal places, we
conclude that to four decimal places.
S.N.P.I.T. & R.C. 18
3
12 2.2894
2
3
4
5
6
7
3.2948
2.5650
2.3180
2.2898
2.2894
2.2894
x
x
x
x
x
x






Secant Method
19S.N.P.I.T. & R.C.
Continue....
 First we find two
points(x0,x1), which are
hopefully near the root
(we may use the
bisection method).
 A line is then drawn
through the two points
and we find where the
line intercepts the x-axis,
x2.
20S.N.P.I.T. & R.C.
Continue....
 If f(x) were truly linear,
the straight line would
intercept the x-axis at
the root.
 However since it is not
linear, the intercept is
not at the root but it
should be close to it.
21S.N.P.I.T. & R.C.
Continue....
 From similar triangles
we can write that,
 
 
 
   10
10
1
21
xfxf
xx
xf
xx




1x 0x2x
 1xf
 0xf
22S.N.P.I.T. & R.C.
Continue....
 From similar triangles
we can write that,
 Solving for x2 we get:
 
 
 
   10
10
1
21
xfxf
xx
xf
xx




   
   10
10
112
xfxf
xx
xfxx



23S.N.P.I.T. & R.C.
Continue....
 Iteratively this is
written as:
   
   nn
nn
nnn
xfxf
xx
xfxx






1
1
1
24S.N.P.I.T. & R.C.
S.N.P.I.T. & R.C. 25
Approx. f '(x) with backward FDD:
Substitute this into the N-R equation:
to obtain the iterative expression:
i 1 i
i 1 i
f (x ) f (x )
f '(x)
x x





i
i 1 i
i
f (x )
x x
f '(x )
  
i i 1 i
i 1 i
i 1 i
f(x )(x x )
x x
f(x ) f(x )




 

Continue….
x
f(x)
1
2
new est.
x
f(x)
1
new est.
2
FALSE POSITION
SECANT METHOD
The new estimate
is selected from the
intersection with the
x-axis
26S.N.P.I.T. & R.C.
Example of Secant Method
The floating ball has a specific gravity of 0.6 and has a
radius of 5.5cm.
You are asked to find the depth to which the ball is
submerged when floating in water.
The equation that gives the depth x to which the ball is
submerged under water is given by
010993.3165.0 423
 
xx
27S.N.P.I.T. & R.C.
Use the secant method of finding roots of
equations to find the depth to which the ball is
submerged under water. Conduct three iterations to
estimate the root of the above equation. Find the
absolute relative approximate error at the end of each
iteration, and the number of significant digits at least
correct at the converged iteration.
28S.N.P.I.T. & R.C.
S.N.P.I.T. & R.C. 29
Secant Method
From the physics of the problem
11.00
)055.0(20
20



x
x
Rx
x
water
Figure 2 :
Floating ball
problem
S.N.P.I.T. & R.C. 30
Let us assume
11.0,0  UL xx
       
        4423
4423
10662.210993.311.0165.011.011.0
10993.310993.30165.000




fxf
fxf
U
L
Hence,
           010662.210993.311.00 44
 
ffxfxf UL
31
Iteration 1
   
   
 
 
0660.0
10662.210993.3
10662.2010993.311.0
44
44









UL
ULLU
m
xfxf
xfxxfx
x
         
5
423
101944.3
10993.30660.0165.00660.00660.0



 fxf m
           00660.00  ffxfxf mL
0660.0,0  UL xx
S.N.P.I.T. & R.C.
32
Iteration
1 0.0000 0.1100 0.0660 N/A -3.1944x10-5
2 0.0000 0.0660 0.0611 8.00 1.1320x10-5
3 0.0611 0.0660 0.0624 2.05 -1.1313x10-7
4 0.0611 0.0624 0.0632377619 0.02 -3.3471x10-10
Lx Ux mx %a  mxf
  010993.3165.0 423
 
xxxfTable 1: Root of
for secant Method.
S.N.P.I.T. & R.C.
33S.N.P.I.T. & R.C.

More Related Content

PPTX
ROOT OF NON-LINEAR EQUATIONS
PPTX
Newton Raphson Method
PPTX
Newton Raphson
PPT
Numerical method
PPTX
newton raphson method
PPTX
Secant method
PPTX
Ordinary Differential Equations: Variable separation method
PDF
Numerical Solution of Ordinary Differential Equations
ROOT OF NON-LINEAR EQUATIONS
Newton Raphson Method
Newton Raphson
Numerical method
newton raphson method
Secant method
Ordinary Differential Equations: Variable separation method
Numerical Solution of Ordinary Differential Equations

What's hot (20)

PDF
Introduction to Numerical Analysis
PDF
Interpolation Methods
PPTX
Interpolation
PPT
Newton raphson method
PPTX
Error Finding in Numerical method
PPT
Presentation on laplace transforms
PPTX
lagrange interpolation
PDF
Partial Differential Equations, 3 simple examples
PPTX
Euler and runge kutta method
PPTX
Vector space
PPT
Continuous Random variable
PPTX
Exponential probability distribution
PPT
introduction to Numerical Analysis
PDF
Gaussian quadratures
PPTX
Lagrange’s interpolation formula
PDF
Numerical Methods - Oridnary Differential Equations - 1
PPTX
Laplace transformation
PDF
LINEAR DIFFERENTIAL EQUATION & BERNOULLI`S EQUATION
PPTX
Euler and improved euler method
PPTX
Introduction to Numerical Analysis
Interpolation Methods
Interpolation
Newton raphson method
Error Finding in Numerical method
Presentation on laplace transforms
lagrange interpolation
Partial Differential Equations, 3 simple examples
Euler and runge kutta method
Vector space
Continuous Random variable
Exponential probability distribution
introduction to Numerical Analysis
Gaussian quadratures
Lagrange’s interpolation formula
Numerical Methods - Oridnary Differential Equations - 1
Laplace transformation
LINEAR DIFFERENTIAL EQUATION & BERNOULLI`S EQUATION
Euler and improved euler method
Ad

Viewers also liked (20)

PDF
Lecture 04 newton-raphson, secant method etc
PPTX
Secant method
PPTX
Secent method
DOCX
Secant method
 
PPT
Secante
PPTX
Newton-Raphson Method
PPTX
Newton raphson
PPT
bisection method
PDF
A review
PDF
Recognize learning with the ELD method
PDF
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
PDF
Ll1411
PDF
Hybrid Approach to Economic Load Dispatch
PDF
Genetic Algorithm for Solving the Economic Load Dispatch
PPT
Roots of equations
PPTX
Newton raphson
PDF
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
PPTX
Bisection method
PPTX
Lecture 04 newton-raphson, secant method etc
Secant method
Secent method
Secant method
 
Secante
Newton-Raphson Method
Newton raphson
bisection method
A review
Recognize learning with the ELD method
Economic Load Dispatch Optimization of Six Interconnected Generating Units Us...
Ll1411
Hybrid Approach to Economic Load Dispatch
Genetic Algorithm for Solving the Economic Load Dispatch
Roots of equations
Newton raphson
OPTIMAL ECONOMIC LOAD DISPATCH USING FUZZY LOGIC & GENETIC ALGORITHMS
Bisection method
Ad

Similar to algebric solutions by newton raphson method and secant method (20)

PDF
NUMERICAL METHODS
PPTX
Numerical Techniques
PPTX
Numerical solutions of algebraic equations
PPTX
Presentation on application of numerical method in our life
PPT
mws_gen_nle_ppt_secant.ppt
PDF
Mit18 330 s12_chapter4
PDF
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
DOCX
Roots of equations
DOCX
Equations root
PPT
Newton Raphson Method.ppt
PPT
Numerical Analysis (Solution of Non-Linear Equations)
PDF
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
PDF
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
PDF
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
PDF
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
PDF
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
PPT
Newton raphson method
PDF
Bca numer
DOCX
Numerical Methods Lab - Shakil Anower Samrat
PPTX
A NEWTON RAPHSON METHOD for class project
NUMERICAL METHODS
Numerical Techniques
Numerical solutions of algebraic equations
Presentation on application of numerical method in our life
mws_gen_nle_ppt_secant.ppt
Mit18 330 s12_chapter4
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
Roots of equations
Equations root
Newton Raphson Method.ppt
Numerical Analysis (Solution of Non-Linear Equations)
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
Newton raphson method
Bca numer
Numerical Methods Lab - Shakil Anower Samrat
A NEWTON RAPHSON METHOD for class project

More from Nagma Modi (10)

PPTX
Sub soil exploration
PPTX
Irrigation engineering
PPTX
Influence line for structure analysis in civil engineering
PPTX
Energy principle in structure analysis in civil engineering
PPTX
design philosophy in structure design in civil engineering
PPT
lintel and arches for building construction
PPTX
Slope deflection method for structure analysis in civil engineering
PPT
Stucture Design of various Watre tank
PPTX
Pile Foundation for advanced construction equipments
PPTX
Ppv ppt
Sub soil exploration
Irrigation engineering
Influence line for structure analysis in civil engineering
Energy principle in structure analysis in civil engineering
design philosophy in structure design in civil engineering
lintel and arches for building construction
Slope deflection method for structure analysis in civil engineering
Stucture Design of various Watre tank
Pile Foundation for advanced construction equipments
Ppv ppt

Recently uploaded (20)

PDF
A systematic review of self-coping strategies used by university students to ...
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PDF
1_English_Language_Set_2.pdf probationary
PPTX
Unit 4 Skeletal System.ppt.pptxopresentatiom
PDF
IGGE1 Understanding the Self1234567891011
PPTX
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
Trump Administration's workforce development strategy
PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PPTX
Cell Types and Its function , kingdom of life
PPTX
Lesson notes of climatology university.
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
A systematic review of self-coping strategies used by university students to ...
Final Presentation General Medicine 03-08-2024.pptx
UNIT III MENTAL HEALTH NURSING ASSESSMENT
1_English_Language_Set_2.pdf probationary
Unit 4 Skeletal System.ppt.pptxopresentatiom
IGGE1 Understanding the Self1234567891011
CHAPTER IV. MAN AND BIOSPHERE AND ITS TOTALITY.pptx
Paper A Mock Exam 9_ Attempt review.pdf.
Chinmaya Tiranga quiz Grand Finale.pdf
What if we spent less time fighting change, and more time building what’s rig...
Trump Administration's workforce development strategy
A powerpoint presentation on the Revised K-10 Science Shaping Paper
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
History, Philosophy and sociology of education (1).pptx
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
LDMMIA Reiki Yoga Finals Review Spring Summer
Cell Types and Its function , kingdom of life
Lesson notes of climatology university.
ChatGPT for Dummies - Pam Baker Ccesa007.pdf

algebric solutions by newton raphson method and secant method

  • 1. Solution of algebraic & transdental equation with Newton Raphson method & Secant method 1S.N.P.I.T. & R.C.
  • 2. Presented by:  130490106065 – Modi Nagma  130490106085 – Patel Pinal  140493106015 – Padhiyar Sagar  140493106025 – Taylor Kishan 2S.N.P.I.T. & R.C.
  • 3. Two Fundamental Approaches 1. Bracketing or Closed Methods - Bisection Method - False-position Method (Regula falsi). 2. Open Methods - Newton-Raphson Method - Secant Method - Fixed point Methods Roots of Equations 3S.N.P.I.T. & R.C.
  • 4. Newton Raphson’s Method  The equation for Newton’s Method can be determined graphically! 4S.N.P.I.T. & R.C.
  • 5. Continue.....  The equation for Newton’s Method can be determined graphically!  From the diagram tan Ө = ƒ'(x0) = ƒ(x0)/(x0 – x1) 5S.N.P.I.T. & R.C.
  • 6. Continue....  The equation for Newton’s Method can be determined graphically!  From the diagram tan Ө = ƒ'(x0) = ƒ(x0)/(x0 – x1)  Thus, x1=x0 -ƒ(x0)/ƒ'(x0). 6S.N.P.I.T. & R.C.
  • 7.  In general, if the nth approximation is xn and f’(xn) ≠ 0, then the next approximation is given by: 3 1 ( ) 12 '( ) n n n n f x x x f x    Equation/Formula 2 Continue… 7S.N.P.I.T. & R.C.
  • 8. Starting with x1 = 2, find the third approximation x3 to the root of the equation x3 – 2x – 5 = 0 Example Of Newton Raphson’s method Example 1 8S.N.P.I.T. & R.C.
  • 9. We apply Newton’s method with f(x) = x3 – 2x – 5 and f’(x) = 3x2 – 2  Newton himself used this equation to illustrate his method.  He chose x1 = 2 after some experimentation because f(1) = -6, f(2) = -1 and f(3) = 16 Continue… Example 1 9S.N.P.I.T. & R.C.
  • 10. Equation 2 becomes: Continue… 10S.N.P.I.T. & R.C. 3 2 2 5 1 3 2 n n n n n x x x x x      
  • 11. With n = 1, we have: Continue….. 11S.N.P.I.T. & R.C. 3 1 1 2 1 2 1 3 2 2 5 3 2 2 2(2) 5 2 3(2) 2 2.1 x x x x x           
  • 12. With n = 2, we obtain:  It turns out that this third approximation x3 ≈ 2.0946 is accurate to four decimal places. Continue…. 12S.N.P.I.T. & R.C. 3 2 2 3 2 2 2 3 2 2 5 3 2 2.1 2(2.1) 5 2.1 3(2.1) 2 2.0946 x x x x x           
  • 13.  Use Newton’s method to find correct to eight decimal places.  First, we observe that finding is equivalent to finding the positive root of the equation x6 – 2 = 0  So, we take f(x) = x6 – 2  Then, f’(x) = 6x5 Example 2 Newton Raphson’s method 6 2 6 2 13S.N.P.I.T. & R.C.
  • 14.  So, Formula 2 (Newton’s method) becomes: Continue… 14S.N.P.I.T. & R.C. 6 1 5 2 6 n n n n x x x x    
  • 15.  Choosing x1 = 1 as the initial approximation, we obtain:  As x5 and x6 agree to eight decimal places, we conclude that to eight decimal places. Continue… 2 3 4 5 6 1.16666667 1.12644368 1.12249707 1.12246205 1.12246205 x x x x x      6 2 1.12246205 15S.N.P.I.T. & R.C.
  • 16. Newton Raphson’s method  Use Newton’s method to find correct to four decimal places.  Where, N=12 q=3 = 1 S.N.P.I.T. & R.C. 16  1 1 1 1n n q n N x x q q x           0x 3 12
  • 17. continue….  So, Formula 2 (Newton’s method) for find out qth root becomes: S.N.P.I.T. & R.C. 17    1 3 1 1 12 3 1 1 3 n n n x x x           1 4.6667x 
  • 18. Continue….  Choosing x1 = 1 as the initial approximation, we obtain:  As x5 and x6 agree to four decimal places, we conclude that to four decimal places. S.N.P.I.T. & R.C. 18 3 12 2.2894 2 3 4 5 6 7 3.2948 2.5650 2.3180 2.2898 2.2894 2.2894 x x x x x x      
  • 20. Continue....  First we find two points(x0,x1), which are hopefully near the root (we may use the bisection method).  A line is then drawn through the two points and we find where the line intercepts the x-axis, x2. 20S.N.P.I.T. & R.C.
  • 21. Continue....  If f(x) were truly linear, the straight line would intercept the x-axis at the root.  However since it is not linear, the intercept is not at the root but it should be close to it. 21S.N.P.I.T. & R.C.
  • 22. Continue....  From similar triangles we can write that,          10 10 1 21 xfxf xx xf xx     1x 0x2x  1xf  0xf 22S.N.P.I.T. & R.C.
  • 23. Continue....  From similar triangles we can write that,  Solving for x2 we get:          10 10 1 21 xfxf xx xf xx            10 10 112 xfxf xx xfxx    23S.N.P.I.T. & R.C.
  • 24. Continue....  Iteratively this is written as:        nn nn nnn xfxf xx xfxx       1 1 1 24S.N.P.I.T. & R.C.
  • 25. S.N.P.I.T. & R.C. 25 Approx. f '(x) with backward FDD: Substitute this into the N-R equation: to obtain the iterative expression: i 1 i i 1 i f (x ) f (x ) f '(x) x x      i i 1 i i f (x ) x x f '(x )    i i 1 i i 1 i i 1 i f(x )(x x ) x x f(x ) f(x )        Continue….
  • 26. x f(x) 1 2 new est. x f(x) 1 new est. 2 FALSE POSITION SECANT METHOD The new estimate is selected from the intersection with the x-axis 26S.N.P.I.T. & R.C.
  • 27. Example of Secant Method The floating ball has a specific gravity of 0.6 and has a radius of 5.5cm. You are asked to find the depth to which the ball is submerged when floating in water. The equation that gives the depth x to which the ball is submerged under water is given by 010993.3165.0 423   xx 27S.N.P.I.T. & R.C.
  • 28. Use the secant method of finding roots of equations to find the depth to which the ball is submerged under water. Conduct three iterations to estimate the root of the above equation. Find the absolute relative approximate error at the end of each iteration, and the number of significant digits at least correct at the converged iteration. 28S.N.P.I.T. & R.C.
  • 29. S.N.P.I.T. & R.C. 29 Secant Method From the physics of the problem 11.00 )055.0(20 20    x x Rx x water Figure 2 : Floating ball problem
  • 30. S.N.P.I.T. & R.C. 30 Let us assume 11.0,0  UL xx                 4423 4423 10662.210993.311.0165.011.011.0 10993.310993.30165.000     fxf fxf U L Hence,            010662.210993.311.00 44   ffxfxf UL
  • 31. 31 Iteration 1             0660.0 10662.210993.3 10662.2010993.311.0 44 44          UL ULLU m xfxf xfxxfx x           5 423 101944.3 10993.30660.0165.00660.00660.0     fxf m            00660.00  ffxfxf mL 0660.0,0  UL xx S.N.P.I.T. & R.C.
  • 32. 32 Iteration 1 0.0000 0.1100 0.0660 N/A -3.1944x10-5 2 0.0000 0.0660 0.0611 8.00 1.1320x10-5 3 0.0611 0.0660 0.0624 2.05 -1.1313x10-7 4 0.0611 0.0624 0.0632377619 0.02 -3.3471x10-10 Lx Ux mx %a  mxf   010993.3165.0 423   xxxfTable 1: Root of for secant Method. S.N.P.I.T. & R.C.