SlideShare ist ein Scribd-Unternehmen logo
1 von 16
Downloaden Sie, um offline zu lesen
Secant Method
(Numerical Analysis)
Presented by: Arindam Goswami(11500219015)
Ayush Jha (11500219023)
Aniket Singh (11500219036)
Avirup Pal (11500219041)
INTRODUCTION
In this method roots are found using an algorithm,
that uses succession of root of secant to better
approximate a root of a function. This method can
thought of as finite difference of Newton’s Method
OVERVIEW
“To find the roots of non linear
equation with the help of secant
lines”
METHODOLOGY
A secant is defined by using two points on graph of a function f(x). It is
necessary to choose these initial points as xi
and xi-1
. Then next point xi-1
is obtained by computing x-value at which the secant line passing
through the points (xi
, f(xi
)) and (xi+1
, f(xi+1
)) has a y-coordinate of zero.
SECANT METHOD
(Derivation)
The secant method can also be derived from geometry :
The Geometric Similar Triangles:
AB/AE = DC/DE
can be written as:
f(xi
) / (xi
- xi+1
) = f(xi-1
) / (xi-1
- xi+1
)
On rearranging, the secant method is
given as:
xi+1
= xi
- (f(xi
)(xi
- xi-1
) / f(xi
) -f(xi-1
))
ALGORITHM
Step 1: Find points x0
and x1
such that x0
<x1
and
f(x0
).f(x1
) < 0.
Step 2: find next value using formulae
➔ x2
= x0
- f(x0
).(x1
-x0
) / { f(x1
)-f(x0
) }
➔ x2
= { x0
.f(x1
)- x1
-f(x0
) } / { f(x1
)-f(x0
) }
➔ x2
= x1
- f(x1
). (x1
- x0
) / { f(x1
) - f(x0
) }
(Using any of the formulae, you will get same x2
value)
Step 3: If f(x2
) = 0 then x2
is an exact root, else x0
= x1
and x1
= x2
Step 4: Repeat steps 2 & 3 until f(xi
)=0 or |f(xi
)| ≤ Accuracy
EXAMPLE
Find a root of an equation f(x) = x3
- x - 1 using secant
method
Solution:
Here x3
- x - 1 = 0
Let f(x) = x3
- x - 1
Here:
x 0 1 2
f(x) -1 -1 5
EXAMPLE contd.
1st Iteration:
x0
= 1 and x1
= 2
f(x0
) = f(1) = -1 and f(x1
) = f(2) = 5
∴ x2
= x1
- f(x1
). (x1
- x0
) / { f(x1
) - f(x0
) }
x2
= 1.16667
∴ f(x2
) = f(1.16667) = -0.5787
EXAMPLE contd.
2nd Iteration:
x1
= 2 and x2
= 1.16667
f(x1
) = f(2) = 5 and f(x2
) = f(1.16667) = -0.5787
∴ x3
= x1
- f(x1
). (x2
- x1
) / { f(x2
) - f(x1
) }
x3
= 1.25311
∴ f(x3
) = f(1.25311) = -0.28536
EXAMPLE contd.
3rd Iteration:
x2
= 1.16667 and x3
= 1.25311
f(x2
) = f(1.16667) = -0.5787 and f(x3
) = f(1.25311) = -0.28536
∴ x4
= x2
- f(x2
). (x3
- x2
) / { f(x3
) - f(x2
) }
x4
= 1.33721
∴ f(x4
) = f(1.33721) = -0.05388
EXAMPLE contd.
4th Iteration:
x3
= 1.25311 and x4
= 1.33721
f(x3
) = f(1.25311) = -0.28536 and f(x4
) = f(1.33721) = -0.28536
∴ x5
= x3
- f(x3
). (x4
- x3
) / { f(x4
) - f(x3
) }
x5
= 1.32385
∴ f(x2
) = f(1.32385) = -0.0037
EXAMPLE contd.
5th Iteration:
x4
= 1.33721 and x5
= 1.32385
f(x4
) = f(1.33721) = 0.05388 and f(x5
) = f(1.32385) = -0.0037
∴ x6
= x4
- f(x4
). (x5
- x4
) / { f(x5
) - f(x4
) }
x6
= 1.32471
∴ f(x2
) = f(1.32471) = -0.00004
EXAMPLE contd.
Approximate root of the equation f(x) = x3
- x - 1 using Secant method is 1.32471
n x0
f(x0
) x1
f(x1
) x2
f(x2
) update
1 1 -1 2 5 1.16667 -0.5787 x0
=x1
x1
=x2
2 2 5 1.1667 -0.5787 1.25311 -0.28536 x0
=x1
x1
=x2
3 1.6667 -0.5787 1.25311 -0.28536 1.33721 0.05388 x0
=x1
x1
=x2
4 1.25311 -0.28536 1.33721 0.05388 1.32385 -0.0037 x0
=x1
x1
=x2
5 1.33721 0.05388 1.32385 -0.0037 1.32471 -0.00004 x0
=x1
x1
=x2
APPLICATIONS
Secant method is one of the analytical procedure available to
earthquake engineers for predicting earthquake and structures
Secant method is used to develop linear dynamic analysis
model to have the potential to influence the behaviour of the
structure in non-linear range.
It is used for nonlinear pushover analysis, which defines the
force-displacement relationship of the walls in the building
under lateral load.
ADVANTAGES
It converges faster than a linear rate so it is more rapidly
convergent.
Requires two guesses that do not need to bracket the root.
It doesn't require use of derivative of a given function because
in some practical cases, derivatives become very hard to find.
It requires only one function evaluation per iteration as
compared to Newton’s method which requires two
REFERENCES
➔ AtoZmath.com
➔ Wikipedia
➔ IIT Research Material
➔ ScienceDirect.com
➔ OpenGenius.org
Numericals Reasoning.pdf

Weitere ähnliche Inhalte

Ähnlich wie Numericals Reasoning.pdf

PROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONPROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONshahzadebaujiti
 
Differential Calculus
Differential Calculus Differential Calculus
Differential Calculus OlooPundit
 
Analysis for engineers _roots_ overeruption
Analysis for engineers _roots_ overeruptionAnalysis for engineers _roots_ overeruption
Analysis for engineers _roots_ overeruptionuttamna97
 
Chapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesChapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesIrfaan Bahadoor
 
CalculusStudyGuide
CalculusStudyGuideCalculusStudyGuide
CalculusStudyGuideMo Elkhatib
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolationVISHAL DONGA
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functionsTarun Gehlot
 
Continuity and Uniform Continuity
Continuity and Uniform ContinuityContinuity and Uniform Continuity
Continuity and Uniform ContinuityDEVTYPE
 
The chain rule
The chain ruleThe chain rule
The chain ruleJ M
 
Maths iii quick review by Dr Asish K Mukhopadhyay
Maths iii quick review by Dr Asish K MukhopadhyayMaths iii quick review by Dr Asish K Mukhopadhyay
Maths iii quick review by Dr Asish K MukhopadhyayDr. Asish K Mukhopadhyay
 
Introduction to comp.physics ch 3.pdf
Introduction to comp.physics ch 3.pdfIntroduction to comp.physics ch 3.pdf
Introduction to comp.physics ch 3.pdfJifarRaya
 
Numarical values
Numarical valuesNumarical values
Numarical valuesAmanSaeed11
 
Numarical values highlighted
Numarical values highlightedNumarical values highlighted
Numarical values highlightedAmanSaeed11
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSaidatina Khadijah
 
Solution 3
Solution 3Solution 3
Solution 3aldrins
 

Ähnlich wie Numericals Reasoning.pdf (20)

PROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTIONPROBABILITY DISTRIBUTION
PROBABILITY DISTRIBUTION
 
NUMERICAL METHODS
NUMERICAL METHODSNUMERICAL METHODS
NUMERICAL METHODS
 
Differential Calculus
Differential Calculus Differential Calculus
Differential Calculus
 
Math is fun!
Math is fun!Math is fun!
Math is fun!
 
Differntiation
 Differntiation Differntiation
Differntiation
 
Analysis for engineers _roots_ overeruption
Analysis for engineers _roots_ overeruptionAnalysis for engineers _roots_ overeruption
Analysis for engineers _roots_ overeruption
 
Chapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesChapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin series
 
CalculusStudyGuide
CalculusStudyGuideCalculusStudyGuide
CalculusStudyGuide
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolation
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functions
 
Continuity and Uniform Continuity
Continuity and Uniform ContinuityContinuity and Uniform Continuity
Continuity and Uniform Continuity
 
The chain rule
The chain ruleThe chain rule
The chain rule
 
Maths iii quick review by Dr Asish K Mukhopadhyay
Maths iii quick review by Dr Asish K MukhopadhyayMaths iii quick review by Dr Asish K Mukhopadhyay
Maths iii quick review by Dr Asish K Mukhopadhyay
 
Interpolation
InterpolationInterpolation
Interpolation
 
Introduction to comp.physics ch 3.pdf
Introduction to comp.physics ch 3.pdfIntroduction to comp.physics ch 3.pdf
Introduction to comp.physics ch 3.pdf
 
Numarical values
Numarical valuesNumarical values
Numarical values
 
Numarical values highlighted
Numarical values highlightedNumarical values highlighted
Numarical values highlighted
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods Assignment
 
Solution 3
Solution 3Solution 3
Solution 3
 

Kürzlich hochgeladen

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 

Kürzlich hochgeladen (20)

Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 

Numericals Reasoning.pdf

  • 1. Secant Method (Numerical Analysis) Presented by: Arindam Goswami(11500219015) Ayush Jha (11500219023) Aniket Singh (11500219036) Avirup Pal (11500219041)
  • 2. INTRODUCTION In this method roots are found using an algorithm, that uses succession of root of secant to better approximate a root of a function. This method can thought of as finite difference of Newton’s Method OVERVIEW “To find the roots of non linear equation with the help of secant lines”
  • 3. METHODOLOGY A secant is defined by using two points on graph of a function f(x). It is necessary to choose these initial points as xi and xi-1 . Then next point xi-1 is obtained by computing x-value at which the secant line passing through the points (xi , f(xi )) and (xi+1 , f(xi+1 )) has a y-coordinate of zero.
  • 4. SECANT METHOD (Derivation) The secant method can also be derived from geometry : The Geometric Similar Triangles: AB/AE = DC/DE can be written as: f(xi ) / (xi - xi+1 ) = f(xi-1 ) / (xi-1 - xi+1 ) On rearranging, the secant method is given as: xi+1 = xi - (f(xi )(xi - xi-1 ) / f(xi ) -f(xi-1 ))
  • 5. ALGORITHM Step 1: Find points x0 and x1 such that x0 <x1 and f(x0 ).f(x1 ) < 0. Step 2: find next value using formulae ➔ x2 = x0 - f(x0 ).(x1 -x0 ) / { f(x1 )-f(x0 ) } ➔ x2 = { x0 .f(x1 )- x1 -f(x0 ) } / { f(x1 )-f(x0 ) } ➔ x2 = x1 - f(x1 ). (x1 - x0 ) / { f(x1 ) - f(x0 ) } (Using any of the formulae, you will get same x2 value) Step 3: If f(x2 ) = 0 then x2 is an exact root, else x0 = x1 and x1 = x2 Step 4: Repeat steps 2 & 3 until f(xi )=0 or |f(xi )| ≤ Accuracy
  • 6. EXAMPLE Find a root of an equation f(x) = x3 - x - 1 using secant method Solution: Here x3 - x - 1 = 0 Let f(x) = x3 - x - 1 Here: x 0 1 2 f(x) -1 -1 5
  • 7. EXAMPLE contd. 1st Iteration: x0 = 1 and x1 = 2 f(x0 ) = f(1) = -1 and f(x1 ) = f(2) = 5 ∴ x2 = x1 - f(x1 ). (x1 - x0 ) / { f(x1 ) - f(x0 ) } x2 = 1.16667 ∴ f(x2 ) = f(1.16667) = -0.5787
  • 8. EXAMPLE contd. 2nd Iteration: x1 = 2 and x2 = 1.16667 f(x1 ) = f(2) = 5 and f(x2 ) = f(1.16667) = -0.5787 ∴ x3 = x1 - f(x1 ). (x2 - x1 ) / { f(x2 ) - f(x1 ) } x3 = 1.25311 ∴ f(x3 ) = f(1.25311) = -0.28536
  • 9. EXAMPLE contd. 3rd Iteration: x2 = 1.16667 and x3 = 1.25311 f(x2 ) = f(1.16667) = -0.5787 and f(x3 ) = f(1.25311) = -0.28536 ∴ x4 = x2 - f(x2 ). (x3 - x2 ) / { f(x3 ) - f(x2 ) } x4 = 1.33721 ∴ f(x4 ) = f(1.33721) = -0.05388
  • 10. EXAMPLE contd. 4th Iteration: x3 = 1.25311 and x4 = 1.33721 f(x3 ) = f(1.25311) = -0.28536 and f(x4 ) = f(1.33721) = -0.28536 ∴ x5 = x3 - f(x3 ). (x4 - x3 ) / { f(x4 ) - f(x3 ) } x5 = 1.32385 ∴ f(x2 ) = f(1.32385) = -0.0037
  • 11. EXAMPLE contd. 5th Iteration: x4 = 1.33721 and x5 = 1.32385 f(x4 ) = f(1.33721) = 0.05388 and f(x5 ) = f(1.32385) = -0.0037 ∴ x6 = x4 - f(x4 ). (x5 - x4 ) / { f(x5 ) - f(x4 ) } x6 = 1.32471 ∴ f(x2 ) = f(1.32471) = -0.00004
  • 12. EXAMPLE contd. Approximate root of the equation f(x) = x3 - x - 1 using Secant method is 1.32471 n x0 f(x0 ) x1 f(x1 ) x2 f(x2 ) update 1 1 -1 2 5 1.16667 -0.5787 x0 =x1 x1 =x2 2 2 5 1.1667 -0.5787 1.25311 -0.28536 x0 =x1 x1 =x2 3 1.6667 -0.5787 1.25311 -0.28536 1.33721 0.05388 x0 =x1 x1 =x2 4 1.25311 -0.28536 1.33721 0.05388 1.32385 -0.0037 x0 =x1 x1 =x2 5 1.33721 0.05388 1.32385 -0.0037 1.32471 -0.00004 x0 =x1 x1 =x2
  • 13. APPLICATIONS Secant method is one of the analytical procedure available to earthquake engineers for predicting earthquake and structures Secant method is used to develop linear dynamic analysis model to have the potential to influence the behaviour of the structure in non-linear range. It is used for nonlinear pushover analysis, which defines the force-displacement relationship of the walls in the building under lateral load.
  • 14. ADVANTAGES It converges faster than a linear rate so it is more rapidly convergent. Requires two guesses that do not need to bracket the root. It doesn't require use of derivative of a given function because in some practical cases, derivatives become very hard to find. It requires only one function evaluation per iteration as compared to Newton’s method which requires two
  • 15. REFERENCES ➔ AtoZmath.com ➔ Wikipedia ➔ IIT Research Material ➔ ScienceDirect.com ➔ OpenGenius.org