OneStopGate.Com
OnestopGate   OnestopGate
   Saturday, May 11, 2024 Login  
OnestopGate
Home | Overview | Syllabus | Tutorials | FAQs | Downloads | Recommended Websites | Advertise | Payments | Contact Us | Forum
OneStopGate

GATE Resources
Gate Articles
Gate Books
Gate Colleges 
Gate Downloads 
Gate Faqs
Gate Jobs
Gate News 
Gate Sample Papers
Training Institutes

GATE Overview
Overview
GATE Eligibility
Structure Of GATE
GATE Coaching Centers
Colleges Providing M.Tech/M.E.
GATE Score
GATE Results
PG with Scholarships
Article On GATE
Admission Process For M.Tech/ MCP-PhD
GATE Topper 2012-13
GATE Forum




GATE 2025 Exclusive
Organizing Institute
Important Dates
How to Apply
Discipline Codes
GATE 2025 Exam Structure

GATE 2025 Syllabus
Aerospace Engg..
Agricultural Engg..
Architecture and Planning
Chemical Engg..
Chemistry
Civil Engg..
Computer Science / IT
Electronics & Communication Engg..
Electrical Engg..
Engineering Sciences
Geology and Geophysics
Instrumentation Engineering
Life Sciences
Mathematics
Mechanical Engg..
Metallurgical Engg..
Mining Engg..
Physics
Production & Industrial Engg..
Pharmaceutical Sciences
Textile Engineering and Fibre Science

GATE Study Material
Aerospace Engg..
Agricultural Engg..
Chemical Engg..
Chemistry
Civil Engg..
Computer Science / IT
Electronics & Communication Engg..
Electrical Engg..
Engineering Sciences
Instrumentation Engg..
Life Sciences
Mathematics
Mechanical Engg..
Physics
Pharmaceutical Sciences
Textile Engineering  and Fibre Science

GATE Preparation
GATE Pattern
GATE Tips N Tricks
Compare Evaluation
Sample Papers 
Gate Downloads 
Experts View

CEED 2013
CEED Exams
Eligibility
Application Forms
Important Dates
Contact Address
Examination Centres
CEED Sample Papers

Discuss GATE
GATE Forum
Exam Cities
Contact Details
Bank Details

Miscellaneous
Advertisment
Contact Us


The Secant Method

Looking for GATE Preparation Material? Join & Get here now!

** Gate 2013 Question Papers.. ** CEED 2013 Results.. ** Gate 2013 Question Papers With Solutions.. ** GATE 2013 CUT-OFFs.. ** GATE 2013 Results.. **

The Secant Method

The Secant Method

The Newton-Raphson algorithm requires two functions evaluations per iteration, [Graphics:Images/SecantMethodMod_gr_1.gif] and[Graphics:Images/SecantMethodMod_gr_2.gif].Historically, the calculation of a derivative could involve considerable effort.But, with modern computer algebra software packages such as Mathematica, this has become less of an issue.Moreover, many functions have non-elementary forms (integrals, sums, discrete solution to an I.V.P.), and it is desirable to have a method for finding a root that does not depend on the computation of a derivative. The secant method does not need a formula for the derivative and it can be coded so that only one new function evaluation is required per iteration.

The formula for the secant method is the same one that was used in the regula falsi method, except that the logical decisions regarding how to define each succeeding term are different.

Theorem (Secant Method).

Assume that [Graphics:Images/SecantMethodMod_gr_3.gif] and there exists a number [Graphics:Images/SecantMethodMod_gr_4.gif], where [Graphics:Images/SecantMethodMod_gr_5.gif].If[Graphics:Images/SecantMethodMod_gr_6.gif], then there exists a [Graphics:Images/SecantMethodMod_gr_7.gif] such that the sequence [Graphics:Images/SecantMethodMod_gr_8.gif] defined by the iteration

[Graphics:Images/SecantMethodMod_gr_9.gif]for[Graphics:Images/SecantMethodMod_gr_10.gif]

will converge to [Graphics:Images/SecantMethodMod_gr_11.gif] for certain initial approximations[Graphics:Images/SecantMethodMod_gr_12.gif].

Algorithm ( Secant Method ).Find a root of[Graphics:Images/SecantMethodMod_gr_13.gif]given two initial approximations[Graphics:Images/SecantMethodMod_gr_14.gif]using the iteration

[Graphics:Images/SecantMethodMod_gr_15.gif]for[Graphics:Images/SecantMethodMod_gr_16.gif].

Mathematica Subroutine (Secant Method).

[Graphics:Images/SecantMethodMod_gr_17.gif]

Example.Use the secant method to find the three roots of the cubic polynomial[Graphics:Images/SecantMethodMod_gr_18.gif].
Determine the secant iteration formula[Graphics:Images/SecantMethodMod_gr_19.gif]that is used.
Show details of the computations for the starting value[Graphics:Images/SecantMethodMod_gr_20.gif].
Solution.

Reduce the volume of printout.

After you have debugged you program and it is working properly, delete the unnecessary print statements

[Graphics:Images/SecantMethodMod_gr_263.gif]and
[Graphics:Images/SecantMethodMod_gr_264.gif]and
[Graphics:Images/SecantMethodMod_gr_265.gif]

Concise Program for the Secant Method

[Graphics:Images/SecantMethodMod_gr_266.gif]

Now test this subroutine using the function in Example 1.

[Graphics:Images/SecantMethodMod_gr_267.gif] [Graphics:Images/SecantMethodMod_gr_268.gif] [Graphics:Images/SecantMethodMod_gr_269.gif] [Graphics:Images/SecantMethodMod_gr_270.gif] [Graphics:Images/SecantMethodMod_gr_271.gif] [Graphics:Images/SecantMethodMod_gr_272.gif] [Graphics:Images/SecantMethodMod_gr_273.gif] [Graphics:Images/SecantMethodMod_gr_274.gif] [Graphics:Images/SecantMethodMod_gr_275.gif] [Graphics:Images/SecantMethodMod_gr_276.gif] [Graphics:Images/SecantMethodMod_gr_277.gif] [Graphics:Images/SecantMethodMod_gr_278.gif] [Graphics:Images/SecantMethodMod_gr_279.gif] [Graphics:Images/SecantMethodMod_gr_280.gif]

Error Checking in the Secant Method

Error checking can be added to the secant method.Here we have added a third parameter[Graphics:Images/SecantMethodMod_gr_281.gif]to the subroutine which estimate the accuracy of the numerical solution.

[Graphics:Images/SecantMethodMod_gr_282.gif]

The following subroutine call uses a maximum of 20 iterations, just to make sure enough iterations are performed.
However, it will terminate when the difference between consecutive iterations is less than[Graphics:Images/SecantMethodMod_gr_283.gif].
By interrogatingkafterward we can see how many iterations were actually performed.

[Graphics:Images/SecantMethodMod_gr_284.gif] [Graphics:Images/SecantMethodMod_gr_285.gif] [Graphics:Images/SecantMethodMod_gr_286.gif] [Graphics:Images/SecantMethodMod_gr_287.gif] [Graphics:Images/SecantMethodMod_gr_288.gif] [Graphics:Images/SecantMethodMod_gr_289.gif] [Graphics:Images/SecantMethodMod_gr_290.gif] [Graphics:Images/SecantMethodMod_gr_291.gif] [Graphics:Images/SecantMethodMod_gr_292.gif] [Graphics:Images/SecantMethodMod_gr_293.gif] [Graphics:Images/SecantMethodMod_gr_294.gif] [Graphics:Images/SecantMethodMod_gr_295.gif] [Graphics:Images/SecantMethodMod_gr_296.gif] [Graphics:Images/SecantMethodMod_gr_297.gif] [Graphics:Images/SecantMethodMod_gr_298.gif] [Graphics:Images/SecantMethodMod_gr_299.gif] [Graphics:Images/SecantMethodMod_gr_300.gif]

Various Scenarios and Animations for the Secant Method.



Discussion Center

Discuss/
Query

Papers/
Syllabus

Feedback/
Suggestion

Yahoo
Groups

Sirfdosti
Groups

Contact
Us

MEMBERS LOGIN
  
Email ID:
Password:

  Forgot Password?
 New User? Register!

INTERVIEW EBOOK
Get 9,000+ Interview Questions & Answers in an eBook. Interview Question & Answer Guide
  • 9,000+ Interview Questions
  • All Questions Answered
  • 5 FREE Bonuses
  • Free Upgrades
GATE RESOURCES
 
  • Gate Books
  • Training Institutes
  • Gate FAQs
  • GATE BOOKS
     
  • Mechanical Engineeering Books
  • Robotics Automations Engineering Books
  • Civil Engineering Books
  • Chemical Engineering Books
  • Environmental Engineering Books
  • Electrical Engineering Books
  • Electronics Engineering Books
  • Information Technology Books
  • Software Engineering Books
  • GATE Preparation Books
  • Exciting Offers



    GATE Exam, Gate 2009, Gate Papers, Gate Preparation & Related Pages


    GATE Overview | GATE Eligibility | Structure Of GATE | GATE Training Institutes | Colleges Providing M.Tech/M.E. | GATE Score | GATE Results | PG with Scholarships | Article On GATE | GATE Forum | GATE 2009 Exclusive | GATE 2009 Syllabus | GATE Organizing Institute | Important Dates for GATE Exam | How to Apply for GATE | Discipline / Branch Codes | GATE Syllabus for Aerospace Engineering | GATE Syllabus for Agricultural Engineering | GATE Syllabus for Architecture and Planning | GATE Syllabus for Chemical Engineering | GATE Syllabus for Chemistry | GATE Syllabus for Civil Engineering | GATE Syllabus for Computer Science / IT | GATE Syllabus for Electronics and Communication Engineering | GATE Syllabus for Engineering Sciences | GATE Syllabus for Geology and Geophysics | GATE Syllabus for Instrumentation Engineering | GATE Syllabus for Life Sciences | GATE Syllabus for Mathematics | GATE Syllabus for Mechanical Engineering | GATE Syllabus for Metallurgical Engineering | GATE Syllabus for Mining Engineering | GATE Syllabus for Physics | GATE Syllabus for Production and Industrial Engineering | GATE Syllabus for Pharmaceutical Sciences | GATE Syllabus for Textile Engineering and Fibre Science | GATE Preparation | GATE Pattern | GATE Tips & Tricks | GATE Compare Evaluation | GATE Sample Papers | GATE Downloads | Experts View on GATE | CEED 2009 | CEED 2009 Exam | Eligibility for CEED Exam | Application forms of CEED Exam | Important Dates of CEED Exam | Contact Address for CEED Exam | CEED Examination Centres | CEED Sample Papers | Discuss GATE | GATE Forum of OneStopGATE.com | GATE Exam Cities | Contact Details for GATE | Bank Details for GATE | GATE Miscellaneous Info | GATE FAQs | Advertisement on GATE | Contact Us on OneStopGATE |
    Copyright © 2024. One Stop Gate.com. All rights reserved Testimonials |Link To Us |Sitemap |Privacy Policy | Terms and Conditions|About Us
    Our Portals : Academic Tutorials | Best eBooksworld | Beyond Stats | City Details | Interview Questions | India Job Forum | Excellent Mobiles | Free Bangalore | Give Me The Code | Gog Logo | Free Classifieds | Jobs Assist | Interview Questions | One Stop FAQs | One Stop GATE | One Stop GRE | One Stop IAS | One Stop MBA | One Stop SAP | One Stop Testing | Web Hosting | Quick Site Kit | Sirf Dosti | Source Codes World | Tasty Food | Tech Archive | Software Testing Interview Questions | Free Online Exams | The Galz | Top Masala | Vyom | Vyom eBooks | Vyom International | Vyom Links | Vyoms | Vyom World
    C Interview Questions | C++ Interview Questions | Send Free SMS | Placement Papers | SMS Jokes | Cool Forwards | Romantic Shayari