OneStopGate.Com
OnestopGate   OnestopGate
   Tuesday, May 14, 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


Home » GATE Study Material » Mathematics » Numerical Analysis » Solution of Differential Equations » Picard Iteration

Picard Iteration

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.. **

Picard Iteration

Introduction

    
The term "Picard iteration" occurs two places in undergraduate mathematics.  In numerical analysis it is used when discussing fixed point iteration for finding a numerical approximation to the equation  [Graphics:Images/PicardIterationMod_gr_1.gif].  In differential equations, Picard iteration is a constructive procedure for establishing the existence of a solution to a differential equation  [Graphics:Images/PicardIterationMod_gr_2.gif] that passes through the point  [Graphics:Images/PicardIterationMod_gr_3.gif].

    The first type of Picard iteration uses computations to generate a "sequence of numbers" which converges to a solution.  We will not present this application, but mention that it involves the traditional role of computer software as a "number cruncher."  

    The goal of this article is to illustrate the second application of Picard iteration; i. e. how to use a computer to efficiently generate a "sequence of functions" which converges to a solution.  We will see that computer software can perform the more sophisticated task of "symbol cruncher."  For years,  see references [3 to 7].   

Background

    Most differential equations texts give a proof for the existence and uniqueness of the solution to a first order differential equation.  Then exercises are given for performing the laborious details involved in the method of successive approximations.  The concept seems straightforward, just repeated integration, but students get bogged down with the details.  Now computers can do all the drudgery and we can get a better grasp on how the process works.  

Theorem 1 (Existence Theorem).  If both  [Graphics:Images/PicardIterationMod_gr_4.gif]  are continuous on the rectangle  [Graphics:Images/PicardIterationMod_gr_5.gif]  and  [Graphics:Images/PicardIterationMod_gr_6.gif],  then there exists a unique solution to the initial value problem (I.V.P.)

(1)        [Graphics:Images/PicardIterationMod_gr_7.gif]  

for all values of  x  in some (smaller) interval  [Graphics:Images/PicardIterationMod_gr_8.gif] contained in  [Graphics:Images/PicardIterationMod_gr_9.gif].  

Picard's Method for D.E.'s

    The method of successive approximations uses the equivalent integral equation for (1) and an iterative method for constructing approximations to the solution.  This is a traditional way to prove (1) and appears in most all differential equations textbooks.   It is attributed to the French mathematician Charles Emile Picard (1856-1941).  
    
Theorem 2 (Successive Approximations - Picard Iteration).  The solution to the I.V.P in (1) is found by constructing recursively a sequence  [Graphics:Images/PicardIterationMod_gr_10.gif]  of functions

        [Graphics:Images/PicardIterationMod_gr_11.gif],   and
(2)    
        [Graphics:Images/PicardIterationMod_gr_12.gif].

Then the solution [Graphics:Images/PicardIterationMod_gr_13.gif] to (1) is given by the limit:

(3)        [Graphics:Images/PicardIterationMod_gr_14.gif].

Symbolic Analysis

    Computer algebra systems are useful for performing the arduous task of repeated integrations.  To perform Picard iteration using Mathematica one must define  [Graphics:Images/PicardIterationMod_gr_15.gif],  and supply the initial value  [Graphics:Images/PicardIterationMod_gr_16.gif],  and the number of iterations n.  The following subroutine will compute the first [Graphics:Images/PicardIterationMod_gr_17.gif] approximations.

Mathematica Subroutine (Picard Iteration).

[Graphics:Images/PicardIterationMod_gr_18.gif]

Getting the Graphs

    If we want to graph several solution, we will need to store them somewhere.  The following version of the Picard subroutine uses the vector  [Graphics:Images/PicardIterationMod_gr_44.gif].  Since the subscript for the elements of a vector start with [Graphics:Images/PicardIterationMod_gr_45.gif], the notation for the sequence of stored functions will be  [Graphics:Images/PicardIterationMod_gr_46.gif].  

Mathematica Subroutine (Vector Form for Picard Iteration).

[Graphics:Images/PicardIterationMod_gr_47.gif]

Extension to First Order Systems in 2D

    Suppose that we want to solve the initial value problem for a system of two differential equations

        [Graphics:Images/PicardIterationMod_gr_76.gif],    and  
(7)
        [Graphics:Images/PicardIterationMod_gr_77.gif]  

Picard iteration can be used to generate two sequences  [Graphics:Images/PicardIterationMod_gr_78.gif]  and  [Graphics:Images/PicardIterationMod_gr_79.gif]  which converge to the solutions  [Graphics:Images/PicardIterationMod_gr_80.gif]  and  [Graphics:Images/PicardIterationMod_gr_81.gif],  respectively, see reference [2].  They are defined recursively by

        [Graphics:Images/PicardIterationMod_gr_82.gif],  
        [Graphics:Images/PicardIterationMod_gr_83.gif],   and
(8)
        [Graphics:Images/PicardIterationMod_gr_84.gif]   

The sequence of approximations will converge to the solution, i.e.

(9)        [Graphics:Images/PicardIterationMod_gr_85.gif]






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