Skip to main content
Mathematics LibreTexts

2.7: Euler's Method

  • Page ID
    43282
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)

    \( \newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\)

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

    \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\)

    \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\)

    \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\)

    \( \newcommand{\Span}{\mathrm{span}}\)

    \( \newcommand{\id}{\mathrm{id}}\)

    \( \newcommand{\Span}{\mathrm{span}}\)

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

    \( \newcommand{\range}{\mathrm{range}\,}\)

    \( \newcommand{\RealPart}{\mathrm{Re}}\)

    \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\)

    \( \newcommand{\Argument}{\mathrm{Arg}}\)

    \( \newcommand{\norm}[1]{\| #1 \|}\)

    \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\)

    \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    \( \newcommand{\vectorA}[1]{\vec{#1}}      % arrow\)

    \( \newcommand{\vectorAt}[1]{\vec{\text{#1}}}      % arrow\)

    \( \newcommand{\vectorB}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vectorC}[1]{\textbf{#1}} \)

    \( \newcommand{\vectorD}[1]{\overrightarrow{#1}} \)

    \( \newcommand{\vectorDt}[1]{\overrightarrow{\text{#1}}} \)

    \( \newcommand{\vectE}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash{\mathbf {#1}}}} \)

    \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \)

    \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)

    If an initial value problem

    \[\label{eq:3.1.1} y'=f(x,y),\quad y(x_0)=y_0 \]

    cannot be solved analytically, it is necessary to resort to numerical methods to obtain useful approximations to a solution of Equation \ref{eq:3.1.1}. we will consider such methods in this chapter.

    We’re interested in computing approximate values of the solution of Equation \ref{eq:3.1.1} at equally spaced points \(x_0\), \(x_1\), …, \(x_n=b\) in an interval \([x_0,b]\). Thus,

    \[x_i=x_0+ih,\quad i=0,1, \dots,n, \nonumber \]

    where

    \[h={b-x_0\over n}.\nonumber\]

    we will denote the approximate values of the solution at these points by \(y_0\), \(y_1\), …, \(y_n\); thus, \(y_i\) is an approximation to \(y(x_i)\). we will call

    \[e_i=y(x_i)-y_i \nonumber\]

    the error at the \(i\)th step. Because of the initial condition \(y(x_0)=y_0\), we will always have \(e_0=0\). However, in general \(e_i\ne0\) if \(i>0\).

    We encounter two sources of error in applying a numerical method to solve an initial value problem:

    • The formulas defining the method are based on some sort of approximation. Errors due to the inaccuracy of the approximation are called truncation errors.
    • Computers do arithmetic with a fixed number of digits, and therefore make errors in evaluating the formulas defining the numerical methods. Errors due to the computer’s inability to do exact arithmetic are called roundoff errors.

    Since a careful analysis of roundoff error is beyond the scope of this book, we will consider only truncation errors.

    Euler’s Method

    The simplest numerical method for solving Equation \ref{eq:3.1.1} is Euler’s method. This method is so crude that it is seldom used in practice; however, its simplicity makes it useful for illustrative purposes. Euler’s method is based on the assumption that the tangent line to the integral curve of Equation \ref{eq:3.1.1} at \((x_i,y(x_i))\) approximates the integral curve over the interval \([x_i,x_{i+1}]\). Since the slope of the integral curve of Equation \ref{eq:3.1.1} at \((x_i,y(x_i))\) is \(y'(x_i)=f(x_i,y(x_i))\), the equation of the tangent line to the integral curve at \((x_i,y(x_i))\) is

    \[\label{eq:3.1.2} y=y(x_i)+f(x_i,y(x_i))(x-x_i).\]

    Setting \(x=x_{i+1}=x_i+h\) in Equation \ref{eq:3.1.2} yields

    \[\label{eq:3.1.3} y_{i+1}=y(x_i)+hf(x_i,y(x_i))\]

    as an approximation to \(y(x_{i+1})\). Since \(y(x_0)=y_0\) is known, we can use Equation \ref{eq:3.1.3} with \(i=0\) to compute

    \[y_1=y_0+hf(x_0,y_0).\nonumber\]

    However, setting \(i=1\) in Equation \ref{eq:3.1.3} yields

    \[y_2=y(x_1)+hf(x_1,y(x_1)),\nonumber\]

    which isn’t useful, since we don’t know \(y(x_1)\). Therefore we replace \(y(x_1)\) by its approximate value \(y_1\) and redefine

    \[y_2=y_1+hf(x_1,y_1).\nonumber\]

    Having computed \(y_2\), we can compute

    \[y_3=y_2+hf(x_2,y_2).\nonumber\]

    In general, Euler’s method starts with the known value \(y(x_0)=y_0\) and computes \(y_1\), \(y_2\), …, \(y_n\) successively by with the formula

    \[\label{eq:3.1.4} y_{i+1}=y_i+hf(x_i,y_i),\quad 0\le i\le n-1.\]

    The next example illustrates the computational procedure indicated in Euler’s method.

    Example \(\PageIndex{1}\)

    Use Euler’s method with \(h=0.1\) to find approximate values for the solution of the initial value problem

    \[\label{eq:3.1.5} y'+2y=x^3e^{-2x},\quad y(0)=1\]

    at \(x=0.1,0.2,0.3\).

    Solution

    We rewrite Equation \ref{eq:3.1.5} as

    \[y'=-2y+x^3e^{-2x},\quad y(0)=1, \nonumber\]

    which is of the form Equation \ref{eq:3.1.1}, with

    \[f(x,y)=-2y+x^3e^{-2x}, \, x_0=0, \, \text{and} \, y_0=1. \nonumber\]

    Euler’s method yields

    \[\begin{align*} y_1 &= y_0+hf(x_0,y_0) \\ &= 1+(0.1)f(0,1)=1+(0.1)(-2)=0.8,\\[4pt] y_2 & = y_1+hf(x_1,y_1)\\ & = 0.8+(0.1)f(0.1,0.8)=0.8+(0.1)\left(-2(0.8)+(0.1)^3e^{-0.2}\right)= 0.640081873,\\[4pt] y_3 & = y_2+hf(x_2,y_2)\\ & = 0.640081873+(0.1)\left(-2(0.640081873)+(0.2)^3e^{-0.4}\right)= 0.512601754. \end{align*}\]

    We’ve written the details of these computations to ensure that you understand the procedure. However, in the rest of the examples as well as the exercises in this chapter, we will assume that you can use a programmable calculator or a computer to carry out the necessary computations.

    Examples Illustrating The Error in Euler’s Method

    Example \(\PageIndex{2}\)

    Use Euler’s method with step sizes \(h=0.1\), \(h=0.05\), and \(h=0.025\) to find approximate values of the solution of the initial value problem

    \[y'+2y=x^3e^{-2x},\quad y(0)=1\nonumber \]

    at \(x=0\), \(0.1\), \(0.2\), \(0.3\), …, \(1.0\). Compare these approximate values with the values of the exact solution

    \[\label{eq:3.1.6} y={e^{-2x}\over4}(x^4+4),\]

    which can be obtained by the method of Section 2.1. (Verify.)

    Table \(\PageIndex{1}\) shows the values of the exact solution Equation \ref{eq:3.1.6} at the specified points, and the approximate values of the solution at these points obtained by Euler’s method with step sizes \(h=0.1\), \(h=0.05\), and \(h=0.025\). In examining this table, keep in mind that the approximate values in the column corresponding to \(h=0.05\) are actually the results of 20 steps with Euler’s method. We haven’t listed the estimates of the solution obtained for \(x=0.05\), \(0.15\), …, since there’s nothing to compare them with in the column corresponding to \(h=0.1\). Similarly, the approximate values in the column corresponding to \(h=0.025\) are actually the results of 40 steps with Euler’s method.

    \(x\) \(h=0.1\) \(h=0.05\) \(h=0.025\) Exact
    0.0 1.000000000 1.000000000 1.000000000 1.000000000
    0.1 0.800000000 0.810005655 0.814518349 0.818751221
    0.2 0.640081873 0.656266437 0.663635953 0.670588174
    0.3 0.512601754 0.532290981 0.541339495 0.549922980
    0.4 0.411563195 0.432887056 0.442774766 0.452204669
    0.5 0.332126261 0.353785015 0.363915597 0.373627557
    0.6 0.270299502 0.291404256 0.301359885 0.310952904
    0.7 0.222745397 0.242707257 0.252202935 0.261398947
    0.8 0.186654593 0.205105754 0.213956311 0.222570721
    0.9 0.159660776 0.176396883 0.184492463 0.192412038
    1.0 0.139778910 0.154715925 0.162003293 0.169169104

    Table \(\PageIndex{1}\): Numerical solution of \(y'+2y=x^3e^{-2x},\ y(0)=1\), by Euler’s method.

    You can see from Table \(\PageIndex{1}\) that decreasing the step size improves the accuracy of Euler’s method. For example,

    \[y_{exact}(1)-y_{approx}(1)\approx \left\{\begin{array}{l} 0.0293 \text{with} h=0.1,\\ 0.0144\mbox{ with }h=0.05,\\ 0.0071\mbox{ with }h=0.025. \end{array}\right.\nonumber \]

    Based on this scanty evidence, you might guess that the error in approximating the exact solution at a fixed value of \(x\) by Euler’s method is roughly halved when the step size is halved. You can find more evidence to support this conjecture by examining Table \(\PageIndex{2}\), which lists the approximate values of \(y_{exact}-y_{approx}\) at \(x=0.1\), \(0.2\), …, \(1.0\).

    \(x\) \(h=0.1\) \(h=0.05\) \(h=0.0.25\)
    0.1 0.0187 0.0087 0.0042
    0.2 0.0305 0.0143 0.0069
    0.3 0.0373 0.0176 0.0085
    0.4 0.0406 0.0193 0.0094
    0.5 0.0415 0.0198 0.0097
    0.6 0.0406 0.0195 0.0095
    0.7 0.0386 0.0186 0.0091
    0.8 0.0359 0.0174 0.0086
    0.9 0.0327 0.0160 0.0079
    1.0 0.0293 0.0144 0.0071

    Table \(\PageIndex{2}\): Errors in approximate solutions of \(y'+2y=x^3e^{-2x},\ y(0)=1\), obtained by Euler’s method.

    Example \(\PageIndex{3}\)

    Tables \(\PageIndex{2}\) and \(\PageIndex{4}\) show analogous results for the nonlinear initial value problem

    \[\label{eq:3.1.7} y'=-2y^2+xy+x^2,\ y(0)=1,\]

    except in this case we cannot solve Equation \ref{eq:3.1.7} exactly. The results in the “Exact” column were obtained by using a more accurate numerical method known as the Runge-Kutta method with a small step size. They are exact to eight decimal places.

    \(x\) \(h=0.1\) \(h=0.05\) \(h=0.025\) Exact
    0.0 1.000000000 1.000000000 1.000000000 1.000000000
    0.1 0.800000000 0.821375000 0.829977007 0.837584494
    0.2 0.681000000 0.707795377 0.719226253 0.729641890
    0.3 0.605867800 0.633776590 0.646115227 0.657580377
    0.4 0.559628676 0.587454526 0.600045701 0.611901791
    0.5 0.535376972 0.562906169 0.575556391 0.587575491
    0.6 0.529820120 0.557143535 0.569824171 0.581942225
    0.7 0.541467455 0.568716935 0.581435423 0.593629526
    0.8 0.569732776 0.596951988 0.609684903 0.621907458
    0.9 0.614392311 0.641457729 0.654110862 0.666250842
    1.0 0.675192037 0.701764495 0.714151626 0.726015790

    Table \(\PageIndex{3}\): Numerical solution of \(y'=-2y^2+xy+x^2,\ y(0)=1\), by Euler’s method.

    Since we think it is important in evaluating the accuracy of the numerical methods that we will be studying in this chapter, we often include a column listing values of the exact solution of the initial value problem, even if the directions in the example or exercise don’t specifically call for it. If quotation marks are included in the heading, the values were obtained by applying the Runge-Kutta method in a way that’s explained in Section 3.3. If quotation marks are not included, the values were obtained from a known formula for the solution. In either case, the values are exact to eight places to the right of the decimal point.

    \(x\) \(h=0.1\) \(h=0.05\) \(h=0.025\)
    0.1 0.0376 0.0162 0.0076
    0.2 0.0486 0.0218 0.0104
    0.3 0.0517 0.0238 0.0115
    0.4 0.0523 0.0244 0.0119
    0.5 0.0522 0.0247 0.0121
    0.6 0.0521 0.0248 0.0121
    0.7 0.0522 0.0249 0.0122
    0.8 0.0522 0.0250 0.0122
    0.9 0.0519 0.0248 0.0121
    1.0 0.0508 0.0243 0.0119

    Table \(\PageIndex{4}\): Errors in approximate solutions of \(y'=-2y^2+xy+x^2,\ y(0)=1\), obtained by Euler’s method.

    Truncation Error in Euler’s Method

    Consistent with the results indicated in Tables \(\PageIndex{1}\) - \(\PageIndex{4}\), we will now show that under reasonable assumptions on \(f\) there’s a constant \(K\) such that the error in approximating the solution of the initial value problem

    \[y'=f(x,y),\quad y(x_0)=y_0,\nonumber \]

    at a given point \(b>x_0\) by Euler’s method with step size \(h=(b-x_0)/n\) satisfies the inequality

    \[|y(b)-y_n|\le Kh,\nonumber \]

    where \(K\) is a constant independent of \(n\).

    There are two sources of error (not counting roundoff) in Euler’s method:

    1. The error committed in approximating the integral curve by the tangent line Equation \ref{eq:3.1.2} over the interval \([x_i,x_{i+1}]\).
    2. The error committed in replacing \(y(x_i)\) by \(y_i\) in Equation \ref{eq:3.1.2} and using Equation \ref{eq:3.1.4} rather than Equation \ref{eq:3.1.2} to compute \(y_{i+1}\).

    Euler’s method assumes that \(y_{i+1}\) defined in Equation \ref{eq:3.1.2} is an approximation to \(y(x_{i+1})\). We call the error in this approximation the local truncation error at the \(i\)th step, and denote it by \(T_i\); thus,

    \[\label{eq:3.1.8} T_i=y(x_{i+1})-y(x_i)-hf(x_i,y(x_i)).\]

    we will now use Taylor’s theorem to estimate \(T_i\), assuming for simplicity that \(f\), \(f_x\), and \(f_y\) are continuous and bounded for all \((x,y)\). Then \(y''\) exists and is bounded on \([x_0,b]\). To see this, we differentiate

    \[y'(x)=f(x,y(x))\nonumber \]

    to obtain

    \[\begin{aligned} y''(x) & = & f_x(x,y(x))+f_y(x,y(x))y'(x)\\ & = & f_x(x,y(x))+f_y(x,y(x))f(x,y(x)).\end{aligned}\nonumber \]

    Since we assumed that \(f\), \(f_x\) and \(f_y\) are bounded, there’s a constant \(M\) such that

    \[|f_{x}(x,y(x))+f_{y}(x,y(x))y'(x)|\leq M\quad x_{0}<x<b\nonumber \]

    which implies that

    \[\label{eq:3.1.9} |y''(x)|\leq M,\quad x_{0}<x<b\]

    Since \(x_{i+1}=x_i+h\), Taylor’s theorem implies that

    \[y(x_{i+1})=y(x_i)+hy'(x_i)+{h^2\over2}y''(\tilde x_i),\nonumber \]

    where \(\tilde x_i\) is some number between \(x_i\) and \(x_{i+1}\). Since \(y'(x_i)=f(x_i,y(x_i))\) this can be written as

    \[y(x_{i+1})=y(x_i)+hf(x_i,y(x_i))+{h^2\over2}y''(\tilde x_i), \nonumber \]

    or, equivalently,

    \[y(x_{i+1})-y(x_i)-hf(x_i,y(x_i))={h^2\over2}y''(\tilde x_i). \nonumber \]

    Comparing this with Equation \ref{eq:3.1.8} shows that

    \[T_i={h^2\over2}y''(\tilde x_i). \nonumber \]

    Recalling Equation \ref{eq:3.1.9}, we can establish the bound

    \[\label{eq:3.1.10} |T_i|\le{Mh^2\over2},\quad 1\le i\le n.\]

    Although it may be difficult to determine the constant \(M\), what is important is that there’s an \(M\) such that Equation \ref{eq:3.1.10} holds. We say that the local truncation error of Euler’s method is of order \(h^2\), which we write as \(O(h^2)\).

    Note that the magnitude of the local truncation error in Euler’s method is determined by the second derivative \(y''\) of the solution of the initial value problem. Therefore the local truncation error will be larger where \(|y''|\) is large, or smaller where \(|y''|\) is small.

    Since the local truncation error for Euler’s method is \(O(h^2)\), it is reasonable to expect that halving \(h\) reduces the local truncation error by a factor of 4. This is true, but halving the step size also requires twice as many steps to approximate the solution at a given point. To analyze the overall effect of truncation error in Euler’s method, it is useful to derive an equation relating the errors

    \[e_{i+1}=y(x_{i+1})-y_{i+1}\quad \text{and} \quad e_i=y(x_i)-y_i. \nonumber \]

    To this end, recall that

    \[\label{eq:3.1.11} y(x_{i+1})=y(x_i)+hf(x_i,y(x_i))+T_i\]

    and

    \[\label{eq:3.1.12} y_{i+1}=y_i+hf(x_i,y_i).\]

    Subtracting Equation \ref{eq:3.1.12} from Equation \ref{eq:3.1.11} yields

    \[\label{eq:3.1.13} e_{i+1}=e_i+h\left[f(x_i,y(x_i))-f(x_i,y_i)\right]+T_i.\]

    The last term on the right is the local truncation error at the \(i\)th step. The other terms reflect the way errors made at previous steps affect \(e_{i+1}\). Since \(|T_i|\le Mh^2/2\), we see from Equation \ref{eq:3.1.13} that

    \[\label{eq:3.1.14} |e_{i+1}|\le |e_i|+h|f(x_i,y(x_i))-f(x_i,y_i)|+{Mh^2\over2}.\]

    Since we assumed that \(f_y\) is continuous and bounded, the mean value theorem implies that

    \[f(x_i,y(x_i))-f(x_i,y_i)=f_y(x_i,y_i^*)(y(x_i)-y_i)=f_y(x_i,y_i^*)e_i, \nonumber \]

    where \(y_i^*\) is between \(y_i\) and \(y(x_i)\). Therefore

    \[|f(x_i,y(x_i))-f(x_i,y_i)|\le R|e_i| \nonumber \]

    for some constant \(R\). From this and Equation \ref{eq:3.1.14},

    \[\label{eq:3.1.15} |e_{i+1}|\le (1+Rh)|e_i|+{Mh^2\over2},\quad 0\le i\le n-1.\]

    For convenience, let \(C=1+Rh\). Since \(e_0=y(x_0)-y_0=0\), applying Equation \ref{eq:3.1.15} repeatedly yields

    \[\begin{align} |e_1| & \le {Mh^2\over2}\nonumber\\ |e_2| & \le C|e_1|+{Mh^2\over2}\le(1+C){Mh^2\over2}\nonumber\\ |e_3| & \le C|e_2|+{Mh^2\over2}\le(1+C+C^2){Mh^2\over2}\nonumber\\ & \vdots \nonumber \\|e_n| & \le C|e_{n-1}|+{Mh^2\over2}\le(1+C+\cdots+C^{n-1}){Mh^2\over2}.\label{eq:3.1.16} \end{align}\]

    Recalling the formula for the sum of a geometric series, we see that

    \[1+C+\cdots+C^{n-1}={1-C^n\over 1-C}={(1+Rh)^n-1\over Rh} \nonumber \]

    (since \(C=1+Rh\)). From this and Equation \ref{eq:3.1.16},

    \[\label{eq:3.1.17} |y(b)-y_n|=|e_n|\le{(1+Rh)^n-1\over R}{Mh\over2}.\]

    Since Taylor’s theorem implies that

    \[1+Rh<e^{rh}\nonumber \]

    (verify),

    \[(1+Rh)^{n}<e^{nRh}=e^{R(b-x_{0})}\quad (\text{since }nh=b-x_{0}).\nonumber \]

    This and Equation \ref{eq:3.1.17} imply that

    \[\label{eq:3.1.18} |y(b)-y_n|\le Kh,\]

    with

    \[K=M{e^{R(b-x_0)}-1\over2R}.\nonumber \]

    Because of Equation \ref{eq:3.1.18} we say that the global truncation error of Euler’s method is of order \(h\), which we write as \(O(h)\).

     

     


    This page titled 2.7: Euler's Method is shared under a CC BY-NC-SA 3.0 license and was authored, remixed, and/or curated by William F. Trench.