Loading [MathJax]/jax/output/HTML-CSS/jax.js
Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

7.3: Euler's Method

( \newcommand{\kernel}{\mathrm{null}\,}\)

Motivating Questions
  • What is Euler's method and how can we use it to approximate the solution to an initial value problem?
  • How accurate is Euler's method?

In Section 7.2, we saw how a slope field can be used to sketch solutions to a differential equation. In particular, the slope field is a plot of a large collection of tangent lines to a large number of solutions of the differential equation, and we sketch a single solution by simply following these tangent lines. With a little more thought, we can use this same idea to approximate numerically the solutions of a differential equation.

Preview Activity 7.3.1

Consider the initial value problem

dydt=12(y+1), y(0)=0.

a. Use the differential equation to find the slope of the tangent line to the solution y(t) at t=0. Then use the given initial value to find the equation of the tangent line at t=0.

b. Sketch the tangent line on the axes provided in Figure 7.3.1 on the interval 0t2 and use it to approximate y(2), the value of the solution at t=2.

7_3_PA.svg

Figure 7.3.1. Grid for plotting the tangent line.

c. Assuming that your approximation for y(2) is the actual value of y(2), use the differential equation to find the slope of the tangent line to y(t) at t=2. Then, write the equation of the tangent line at t=2.

d. Add a sketch of this tangent line on the interval 2t4 to your plot Figure 7.3.1; use this new tangent line to approximate y(4), the value of the solution at t=4.

e. Repeat the same step to find an approximation for y(6).

Euler's Method

Preview Activity 7.3.1 demonstrates an algorithm known as Euler's 1  Method, which generates a numerical approximation to the solution of an initial value problem. In this algorithm, we will approximate the solution by taking horizontal steps of a fixed size that we denote by Δt.

“Euler” is pronounced “Oy-ler.” Among other things, Euler is the mathematician credited with the famous number e; if you incorrectly pronounce his name “You-ler,” you fail to appreciate his genius and legacy.

Before explaining the algorithm in detail, let's remember how we compute the slope of a line: the slope is the ratio of the vertical change to the horizontal change, as shown in Figure 7.3.2.

In other words, m=ΔyΔt. Solving for Δy, we see that the vertical change is the product of the slope and the horizontal change, or

Δy=mΔt.
 
7_3_slope.svgFigure 7.3.2. The role of slope in Euler's Method.

Now, suppose that we would like to solve the initial value problem

dydt=ty, y(0)=1.

There is an algorithm by which we can find an algebraic formula for the solution to this initial value problem, and we can check that this solution is y(t)=t1+2et. But we are instead interested in generating an approximate solution by creating a sequence of points (ti,yi), where yiy(ti). For this first example, we choose Δt=0.2.

Since we know that y(0)=1, we will take the initial point to be (t0,y0)=(0,1) and move horizontally by Δt=0.2 to the point (t1,y1). Thus, t1=t0+Δt=0.2. Now, the differential equation tells us that the slope of the tangent line at this point is

m=dydt|(0,1)=01=1,

so to move along the tangent line by taking a horizontal step of size Δt=0.2, we must also move vertically by

Δy=mΔt=10.2=0.2.

We then have the approximation y(0.2)y1=y0+Δy=10.2=0.8. At this point, we have executed one step of Euler's method, as seen graphically in Figure 7.3.3.

 

7_3_euler_points_1.svgFigure 7.3.3. One step of Euler's method.

Now we repeat this process: at (t1,y1)=(0.2,0.8), the differential equation tells us that the slope is

m=dydt|(0.2,0.8)=0.20.8=0.6.

If we move forward horizontally by Δt to t2=t1+Δ=0.4, we must move vertically by

Δy=0.60.2=0.12.

We consequently arrive at y2=y1+Δy=0.80.12=0.68, which gives y(0.2)0.68. Now we have completed the second step of Euler's method, as shown in Figure 7.3.4.

 

7_3_euler_points_2.svgFigure 7.3.4. Two steps of Euler's method.

If we continue in this way, we may generate the points (ti,yi) shown in Figure 7.3.5. Because we can find a formula for the actual solution y(t) to this differential equation, we can graph y(t) and compare it to the points generated by Euler's method, as shown in Figure 7.3.6.

7_3_euler_points_6.svg
Figure 7.3.5: The points and piecewise linear approximate solution generated by Euler's method.
7_3_euler.svg
Figure 7.3.6: The approximate solution compared to the exact solution (shown in blue).

Because we need to generate a large number of points (ti,yi), it is convenient to organize the implementation of Euler's method in a table as shown. We begin with the given initial data.

ti yi dy/dt Δy
0.0000 1.0000    

From here, we compute the slope of the tangent line m=dy/dt using the formula for dy/dt from the differential equation, and then we find Δy, the change in y, using the rule Δy=mΔt.

ti yi dy/dt Δy
0.0000 1.0000 1.0000 0.2000

Next, we increase ti by Δt and yi by Δy to get

ti yi dy/dt Δy
0.0000 1.0000 1.0000 0.2000
0.2000 0.8000    

We continue the process for however many steps we decide, eventually generating a table like Table 7.3.1.

Table 7.3.1. Euler's method for 6 steps with Δt=0.2.
ti yi dy/dt Δy
0.0000 1.0000 1.0000 0.2000
0.2000 0.8000 0.6000 0.1200
0.4000 0.6800 0.2800 0.0560
0.6000 0.6240 0.0240 0.0048
0.8000 0.6192 0.1808 0.0362
1.0000 0.6554 0.3446 0.0689
1.2000 0.7243 0.4757 0.0951
Activity 7.3.2

Consider the initial value problem

dydt=2t1, y(0)=0
  1. Use Euler's method with Δt=0.2 to approximate the solution at ti=0.2,0.4,0.6,0.8, and 1.0. Record your work in the following table, and sketch the points (ti,yi) on the axes provided.
    Table 7.3.2. Table for recording results of Euler's method.
    ti yi dy/dt Δy
    0.0000 0.0000    
    0.2000      
    0.4000      
    0.6000      
    0.8000      
    1.0000      
    7_3_euler_empty.svg
    Figure 7.3.7. Grid for plotting points generated by Euler's method.
  2. Find the exact solution to the original initial value problem and use this function to find the error in your approximation at each one of the points ti.
  3. Explain why the value y5 generated by Euler's method for this initial value problem produces the same value as a left Riemann sum for the definite integral 10(2t1) dt.
  4. How would your computations differ if the initial value was y(0)=1? What does this mean about different solutions to this differential equation?
Activity 7.3.3

Consider the differential equation dydt=6yy2.

  1. Sketch the slope field for this differential equation on the axes provided in Figure 7.3.8.
    7_3_slopefield.svg

    Figure 7.3.8. Grid for plotting the slope field of the given differential equation.

  2. Identify any equilibrium solutions and determine whether they are stable or unstable.
  3. What is the long-term behavior of the solution that satisfies the initial value y(0)=1?
  4. Using the initial value y(0)=1, use Euler's method with Δt=0.2 to approximate the solution at ti=0.2,0.4,0.6,0.8, and 1.0. Record your results in Table 7.3.3 and sketch the corresponding points (ti,yi) on the axes provided in Figure 7.3.9. Note the different horizontal scale on the axes in Figure 7.3.9 compared to Figure 7.3.8.
    Table 7.3.2. Table for recording results of Euler's method with Δt=0.2.
    ti yi dy/dt Δy
    0.0 1.0000    
    0.2      
    0.4      
    0.6      
    0.8      
    1.0      
    7_3_euler_empty_2.svg
    Figure 7.3.9. Axes for plotting the results of Euler's method.
  5. What happens if we apply Euler's method to approximate the solution with y(0)=6?

 The error in Euler's method

Since we are approximating the solutions to an initial value problem using tangent lines, we should expect that the error in the approximation will be smaller when the step size is smaller. Consider the initial value problem

dydt=y, y(0)=1,

whose solution we can easily find.

The question posed by this initial value problem is “what function do we know that is the same as its own derivative and has value 1 when t=0?” It is not hard to see that the solution is y(t)=et. We now apply Euler's method to approximate y(1)=e using several values of Δt. These approximations will be denoted by EΔt, and we'll use them to see how accurate Euler's Method is.

To begin, we apply Euler's method with a step size of Δt=0.2. In that case, we find that y(1)E0.2=2.4883. The error is therefore

y(1)E0.2=e2.48830.2300.

Repeatedly halving Δt gives the following results, expressed in both tabular and graphical form.

Table 7.3.3. Errors that correspond to different Δt values.
Δt EΔt Error
0.200 2.4883 0.2300
0.100 2.5937 0.1245
0.050 2.6533 0.0650
0.025 2.6851 0.0332
7_3_error.svg
Figure 7.3.10. A plot of the error as a function of Δt.

Notice, both numerically and graphically, that the error is roughly halved when Δt is halved. This example illustrates the following general principle.

If Euler's method is used to approximate the solution to an initial value problem at a point ¯t, then the error is proportional to Δt. That is,

y(¯t)EΔtKΔt

for some constant of proportionality K.

Summary

  • Euler's method is an algorithm for approximating the solution to an initial value problem by following the tangent lines while we take horizontal steps across the t-axis.
  • If we wish to approximate y(¯t) for some fixed ¯t by taking horizontal steps of size Δt, then the error in our approximation is proportional to Δt.

This page titled 7.3: Euler's Method is shared under a CC BY-SA 4.0 license and was authored, remixed, and/or curated by Matthew Boelkins, David Austin & Steven Schlicker (ScholarWorks @Grand Valley State University) via source content that was edited to the style and standards of the LibreTexts platform.

Support Center

How can we help?