7.3: Euler's Method
( \newcommand{\kernel}{\mathrm{null}\,}\)
- 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.
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 0≤t≤2 and use it to approximate y(2), the value of the solution at t=2.
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 2≤t≤4 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.
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
Now, suppose that we would like to solve the initial value problem
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)=t−1+2e−t. But we are instead interested in generating an approximate solution by creating a sequence of points (ti,yi), where yi≈y(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
so to move along the tangent line by taking a horizontal step of size Δt=0.2, we must also move vertically by
We then have the approximation y(0.2)≈y1=y0+Δy=1−0.2=0.8. At this point, we have executed one step of Euler's method, as seen graphically in Figure 7.3.3.
Now we repeat this process: at (t1,y1)=(0.2,0.8), the differential equation tells us that the slope is
If we move forward horizontally by Δt to t2=t1+Δ=0.4, we must move vertically by
We consequently arrive at y2=y1+Δy=0.8−0.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.
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.
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.
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 |
Consider the initial value problem
- 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 Figure 7.3.7. Grid for plotting points generated by Euler's method. - 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.
- 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(2t−1) dt.
- How would your computations differ if the initial value was y(0)=1? What does this mean about different solutions to this differential equation?
Consider the differential equation dydt=6y−y2.
- Sketch the slope field for this differential equation on the axes provided in Figure 7.3.8.
Figure 7.3.8. Grid for plotting the slope field of the given differential equation.
- Identify any equilibrium solutions and determine whether they are stable or unstable.
- What is the long-term behavior of the solution that satisfies the initial value y(0)=1?
- 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 Figure 7.3.9. Axes for plotting the results of Euler's method. - 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
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
Repeatedly halving Δt gives the following results, expressed in both tabular and graphical form.
Δ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 |
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,
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.