SlideShare a Scribd company logo
1 of 3
Euler’s Method
SOME PROBLEMS TO PRACTICE
Given that y(1) = -3 and
𝑑𝑦
𝑑𝑥
= 2𝑥 + 𝑦, approximate y(2)
using Euler’s Method and two steps of equal size.
 Since we have to get from x = 1 to x = 2 using two steps of equal size, our
step-size will be 0.5.
𝑥0 = 1
𝑦0 = −3
~~~~~~~~~~
𝑥1 = 1 + 0.5 = 1.5
𝑦1 = −3 + 0.5 2 1 − 3 = −3 + 0.5 −1 = −3.5
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
𝑥2 = 1.5 + 0.5 = 2
𝑦2 = −3.5 + 0.5 2 1.5 + −3.5 = −3.5 + 0.5 −0.5 = −3.75
So, 𝒚 𝟐 ≈ −𝟑. 𝟕𝟓.
Consider
𝑑𝑦
𝑑𝑥
= 𝑦 − 2, where y(0)=4. Use Euler’s Method with
4 equal subintervals to approximate y(4).
 Since we have to get from x = 0 to x = 4 using four steps of equal size, our step-size will be 1.
𝑥0 = 0
𝑦0 = 4
~~~~~~~~~~
𝑥1 = 0 + 1 = 1
𝑦1 = 4 + 1 4 − 2 = 4 + 2 = 6
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
𝑥2 = 1 + 1 = 2
𝑦2 = 6 + 1 6 − 2 = 6 + 4 = 10
~~~~~~~~~~~~~~~~~~~~~~~~
𝑥3 = 2 + 1 = 3
𝑦3 = 10 + 1 10 − 2 = 10 + 8 = 18
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
𝑥4 = 3 + 1 = 4
𝑦4 = 18 + 1 18 − 2 = 18 + 16 = 34
So, 𝒚 𝟒 ≈ 𝟑𝟒.

More Related Content

What's hot

Numerical Methods - Oridnary Differential Equations - 3
Numerical Methods - Oridnary Differential Equations - 3Numerical Methods - Oridnary Differential Equations - 3
Numerical Methods - Oridnary Differential Equations - 3Dr. Nirav Vyas
 
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATION
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATIONSERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATION
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATIONKavin Raval
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equationNofal Umair
 
Eigenvalues and Eigenvectors
Eigenvalues and EigenvectorsEigenvalues and Eigenvectors
Eigenvalues and EigenvectorsVinod Srivastava
 
Maxima & Minima of Calculus
Maxima & Minima of CalculusMaxima & Minima of Calculus
Maxima & Minima of CalculusArpit Modh
 
Series solution to ordinary differential equations
Series solution to ordinary differential equations Series solution to ordinary differential equations
Series solution to ordinary differential equations University of Windsor
 
Spline Interpolation
Spline InterpolationSpline Interpolation
Spline InterpolationaiQUANT
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolationHarshad Koshti
 
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical MethodsGauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical MethodsJanki Shah
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsJaydev Kishnani
 
Jacobi iteration method
Jacobi iteration methodJacobi iteration method
Jacobi iteration methodMONIRUL ISLAM
 
Partial differential equation & its application.
Partial differential equation & its application.Partial differential equation & its application.
Partial differential equation & its application.isratzerin6
 

What's hot (20)

Curve tracing
Curve tracingCurve tracing
Curve tracing
 
Numerical method
Numerical methodNumerical method
Numerical method
 
Numerical Methods - Oridnary Differential Equations - 3
Numerical Methods - Oridnary Differential Equations - 3Numerical Methods - Oridnary Differential Equations - 3
Numerical Methods - Oridnary Differential Equations - 3
 
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATION
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATIONSERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATION
SERIES SOLUTION OF ORDINARY DIFFERENTIALL EQUATION
 
Diagonalization
DiagonalizationDiagonalization
Diagonalization
 
Runge Kutta Method
Runge Kutta MethodRunge Kutta Method
Runge Kutta Method
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
 
Eigenvalues and Eigenvectors
Eigenvalues and EigenvectorsEigenvalues and Eigenvectors
Eigenvalues and Eigenvectors
 
Taylor series
Taylor seriesTaylor series
Taylor series
 
Maxima & Minima of Calculus
Maxima & Minima of CalculusMaxima & Minima of Calculus
Maxima & Minima of Calculus
 
Series solution to ordinary differential equations
Series solution to ordinary differential equations Series solution to ordinary differential equations
Series solution to ordinary differential equations
 
Spline Interpolation
Spline InterpolationSpline Interpolation
Spline Interpolation
 
Newton's forward & backward interpolation
Newton's forward & backward interpolationNewton's forward & backward interpolation
Newton's forward & backward interpolation
 
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical MethodsGauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
Gauss Elimination & Gauss Jordan Methods in Numerical & Statistical Methods
 
Numerical analysis ppt
Numerical analysis pptNumerical analysis ppt
Numerical analysis ppt
 
Jacobians new
Jacobians newJacobians new
Jacobians new
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
 
Jacobi iteration method
Jacobi iteration methodJacobi iteration method
Jacobi iteration method
 
GAUSS ELIMINATION METHOD
 GAUSS ELIMINATION METHOD GAUSS ELIMINATION METHOD
GAUSS ELIMINATION METHOD
 
Partial differential equation & its application.
Partial differential equation & its application.Partial differential equation & its application.
Partial differential equation & its application.
 

Similar to Euler's Method

Lecture-1-Mech.pptx . .
Lecture-1-Mech.pptx                   . .Lecture-1-Mech.pptx                   . .
Lecture-1-Mech.pptx . .happycocoman
 
Gauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan methodGauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan methodNaimesh Bhavsar
 
Area y perimetro del túnel minero
Area y perimetro del túnel mineroArea y perimetro del túnel minero
Area y perimetro del túnel mineroRodolfoJuandeDiosLau
 
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLE
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLEANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLE
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLEMuhammad Nur Chalim
 
MATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxMATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxmassm99m
 
Functions of severable variables
Functions of severable variablesFunctions of severable variables
Functions of severable variablesSanthanam Krishnan
 
Study Material Numerical Solution of Odinary Differential Equations
Study Material Numerical Solution of Odinary Differential EquationsStudy Material Numerical Solution of Odinary Differential Equations
Study Material Numerical Solution of Odinary Differential EquationsMeenakshisundaram N
 
Assignment_1_solutions.pdf
Assignment_1_solutions.pdfAssignment_1_solutions.pdf
Assignment_1_solutions.pdfAbhayRupareliya1
 
lecture-3 laplce and poisson.pptx .
lecture-3 laplce and poisson.pptx                .lecture-3 laplce and poisson.pptx                .
lecture-3 laplce and poisson.pptx .happycocoman
 
Linear systems with 3 unknows
Linear systems with 3 unknowsLinear systems with 3 unknows
Linear systems with 3 unknowsmstf mstf
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsHazel Joy Chong
 
Statitical Inference Ch3 uncertainties .pptx
Statitical Inference Ch3 uncertainties .pptxStatitical Inference Ch3 uncertainties .pptx
Statitical Inference Ch3 uncertainties .pptxJuankZBk
 
Module 5 (Part 3-Revised)-Functions and Relations.pdf
Module 5 (Part 3-Revised)-Functions and Relations.pdfModule 5 (Part 3-Revised)-Functions and Relations.pdf
Module 5 (Part 3-Revised)-Functions and Relations.pdfGaleJean
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential EquationsAMINULISLAM439
 
Calculus II - 13
Calculus II - 13Calculus II - 13
Calculus II - 13David Mao
 
Orbital_Simulation (2).pptx
Orbital_Simulation (2).pptxOrbital_Simulation (2).pptx
Orbital_Simulation (2).pptxMSPrasad7
 

Similar to Euler's Method (20)

Lecture-1-Mech.pptx . .
Lecture-1-Mech.pptx                   . .Lecture-1-Mech.pptx                   . .
Lecture-1-Mech.pptx . .
 
Computational Dynamics edited
Computational Dynamics editedComputational Dynamics edited
Computational Dynamics edited
 
Gauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan methodGauss elimination & Gauss Jordan method
Gauss elimination & Gauss Jordan method
 
Area y perimetro del túnel minero
Area y perimetro del túnel mineroArea y perimetro del túnel minero
Area y perimetro del túnel minero
 
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLE
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLEANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLE
ANALISIS RIIL 1 3.3 dan 3.4 ROBERT G BARTLE
 
lec19.ppt
lec19.pptlec19.ppt
lec19.ppt
 
MATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptxMATRICES AND CALCULUS.pptx
MATRICES AND CALCULUS.pptx
 
Functions of severable variables
Functions of severable variablesFunctions of severable variables
Functions of severable variables
 
Study Material Numerical Solution of Odinary Differential Equations
Study Material Numerical Solution of Odinary Differential EquationsStudy Material Numerical Solution of Odinary Differential Equations
Study Material Numerical Solution of Odinary Differential Equations
 
S1230109
S1230109S1230109
S1230109
 
Assignment_1_solutions.pdf
Assignment_1_solutions.pdfAssignment_1_solutions.pdf
Assignment_1_solutions.pdf
 
lecture-3 laplce and poisson.pptx .
lecture-3 laplce and poisson.pptx                .lecture-3 laplce and poisson.pptx                .
lecture-3 laplce and poisson.pptx .
 
Linear systems with 3 unknows
Linear systems with 3 unknowsLinear systems with 3 unknows
Linear systems with 3 unknows
 
Lecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equationsLecture 11 systems of nonlinear equations
Lecture 11 systems of nonlinear equations
 
Statitical Inference Ch3 uncertainties .pptx
Statitical Inference Ch3 uncertainties .pptxStatitical Inference Ch3 uncertainties .pptx
Statitical Inference Ch3 uncertainties .pptx
 
Module 5 (Part 3-Revised)-Functions and Relations.pdf
Module 5 (Part 3-Revised)-Functions and Relations.pdfModule 5 (Part 3-Revised)-Functions and Relations.pdf
Module 5 (Part 3-Revised)-Functions and Relations.pdf
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential Equations
 
Calculus II - 13
Calculus II - 13Calculus II - 13
Calculus II - 13
 
MT102 Лекц 11
MT102 Лекц 11MT102 Лекц 11
MT102 Лекц 11
 
Orbital_Simulation (2).pptx
Orbital_Simulation (2).pptxOrbital_Simulation (2).pptx
Orbital_Simulation (2).pptx
 

More from dmidgette

Introduction to Multiplying Polynomials
Introduction to Multiplying PolynomialsIntroduction to Multiplying Polynomials
Introduction to Multiplying Polynomialsdmidgette
 
Creating a Taylor Polynomial
Creating a Taylor PolynomialCreating a Taylor Polynomial
Creating a Taylor Polynomialdmidgette
 
Classifying Infinite Series
Classifying Infinite SeriesClassifying Infinite Series
Classifying Infinite Seriesdmidgette
 
Verifying Solutions of a Linear System
Verifying Solutions of a Linear SystemVerifying Solutions of a Linear System
Verifying Solutions of a Linear Systemdmidgette
 
Parallel, Perpendicular, or Neither?
Parallel, Perpendicular, or Neither?Parallel, Perpendicular, or Neither?
Parallel, Perpendicular, or Neither?dmidgette
 
Creating a Table from a Function
Creating a Table from a FunctionCreating a Table from a Function
Creating a Table from a Functiondmidgette
 
Interval of Convergence
Interval of ConvergenceInterval of Convergence
Interval of Convergencedmidgette
 
Sequences and Series
Sequences and SeriesSequences and Series
Sequences and Seriesdmidgette
 
Review of Must-Knows About Inequalities
Review of Must-Knows About InequalitiesReview of Must-Knows About Inequalities
Review of Must-Knows About Inequalitiesdmidgette
 
Average Value of a Function
Average Value of a FunctionAverage Value of a Function
Average Value of a Functiondmidgette
 
Simplifying Algebraic Expressions
Simplifying Algebraic ExpressionsSimplifying Algebraic Expressions
Simplifying Algebraic Expressionsdmidgette
 
Basics of Improper Integration
Basics of Improper IntegrationBasics of Improper Integration
Basics of Improper Integrationdmidgette
 
Introduction to Partial Fractions
Introduction to Partial FractionsIntroduction to Partial Fractions
Introduction to Partial Fractionsdmidgette
 
Evaluating Limits - A General Checklist
Evaluating Limits - A General ChecklistEvaluating Limits - A General Checklist
Evaluating Limits - A General Checklistdmidgette
 
AP Statistics Exam Information - 2018
AP Statistics Exam Information - 2018AP Statistics Exam Information - 2018
AP Statistics Exam Information - 2018dmidgette
 
AP Psychology Exam Information - 2018
AP Psychology Exam Information - 2018AP Psychology Exam Information - 2018
AP Psychology Exam Information - 2018dmidgette
 
AP Computer Science Principles Exam Information - 2018
AP Computer Science Principles Exam Information - 2018AP Computer Science Principles Exam Information - 2018
AP Computer Science Principles Exam Information - 2018dmidgette
 
AP Computer Science Exam Information - 2018
AP Computer Science Exam Information - 2018AP Computer Science Exam Information - 2018
AP Computer Science Exam Information - 2018dmidgette
 

More from dmidgette (20)

Introduction to Multiplying Polynomials
Introduction to Multiplying PolynomialsIntroduction to Multiplying Polynomials
Introduction to Multiplying Polynomials
 
Creating a Taylor Polynomial
Creating a Taylor PolynomialCreating a Taylor Polynomial
Creating a Taylor Polynomial
 
Classifying Infinite Series
Classifying Infinite SeriesClassifying Infinite Series
Classifying Infinite Series
 
Verifying Solutions of a Linear System
Verifying Solutions of a Linear SystemVerifying Solutions of a Linear System
Verifying Solutions of a Linear System
 
Parallel, Perpendicular, or Neither?
Parallel, Perpendicular, or Neither?Parallel, Perpendicular, or Neither?
Parallel, Perpendicular, or Neither?
 
Intercepts
InterceptsIntercepts
Intercepts
 
Creating a Table from a Function
Creating a Table from a FunctionCreating a Table from a Function
Creating a Table from a Function
 
Interval of Convergence
Interval of ConvergenceInterval of Convergence
Interval of Convergence
 
Sequences and Series
Sequences and SeriesSequences and Series
Sequences and Series
 
Review of Must-Knows About Inequalities
Review of Must-Knows About InequalitiesReview of Must-Knows About Inequalities
Review of Must-Knows About Inequalities
 
Average Value of a Function
Average Value of a FunctionAverage Value of a Function
Average Value of a Function
 
Simplifying Algebraic Expressions
Simplifying Algebraic ExpressionsSimplifying Algebraic Expressions
Simplifying Algebraic Expressions
 
Basics of Improper Integration
Basics of Improper IntegrationBasics of Improper Integration
Basics of Improper Integration
 
Introduction to Partial Fractions
Introduction to Partial FractionsIntroduction to Partial Fractions
Introduction to Partial Fractions
 
Evaluating Limits - A General Checklist
Evaluating Limits - A General ChecklistEvaluating Limits - A General Checklist
Evaluating Limits - A General Checklist
 
AP Statistics Exam Information - 2018
AP Statistics Exam Information - 2018AP Statistics Exam Information - 2018
AP Statistics Exam Information - 2018
 
AP Psychology Exam Information - 2018
AP Psychology Exam Information - 2018AP Psychology Exam Information - 2018
AP Psychology Exam Information - 2018
 
AP Computer Science Principles Exam Information - 2018
AP Computer Science Principles Exam Information - 2018AP Computer Science Principles Exam Information - 2018
AP Computer Science Principles Exam Information - 2018
 
AP Computer Science Exam Information - 2018
AP Computer Science Exam Information - 2018AP Computer Science Exam Information - 2018
AP Computer Science Exam Information - 2018
 
Symmetry
SymmetrySymmetry
Symmetry
 

Recently uploaded

HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationAadityaSharma884161
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayMakMakNepo
 

Recently uploaded (20)

HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint Presentation
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up Friday
 

Euler's Method

  • 2. Given that y(1) = -3 and 𝑑𝑦 𝑑𝑥 = 2𝑥 + 𝑦, approximate y(2) using Euler’s Method and two steps of equal size.  Since we have to get from x = 1 to x = 2 using two steps of equal size, our step-size will be 0.5. 𝑥0 = 1 𝑦0 = −3 ~~~~~~~~~~ 𝑥1 = 1 + 0.5 = 1.5 𝑦1 = −3 + 0.5 2 1 − 3 = −3 + 0.5 −1 = −3.5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 𝑥2 = 1.5 + 0.5 = 2 𝑦2 = −3.5 + 0.5 2 1.5 + −3.5 = −3.5 + 0.5 −0.5 = −3.75 So, 𝒚 𝟐 ≈ −𝟑. 𝟕𝟓.
  • 3. Consider 𝑑𝑦 𝑑𝑥 = 𝑦 − 2, where y(0)=4. Use Euler’s Method with 4 equal subintervals to approximate y(4).  Since we have to get from x = 0 to x = 4 using four steps of equal size, our step-size will be 1. 𝑥0 = 0 𝑦0 = 4 ~~~~~~~~~~ 𝑥1 = 0 + 1 = 1 𝑦1 = 4 + 1 4 − 2 = 4 + 2 = 6 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 𝑥2 = 1 + 1 = 2 𝑦2 = 6 + 1 6 − 2 = 6 + 4 = 10 ~~~~~~~~~~~~~~~~~~~~~~~~ 𝑥3 = 2 + 1 = 3 𝑦3 = 10 + 1 10 − 2 = 10 + 8 = 18 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 𝑥4 = 3 + 1 = 4 𝑦4 = 18 + 1 18 − 2 = 18 + 16 = 34 So, 𝒚 𝟒 ≈ 𝟑𝟒.