A Comparison of Different Numerical Schemes to Solve Nonlinear First Order ODE

Abstract

In this paper, the nonlinear first order ordinary differential equation will be considered. Three simplest numerical stencils are presented to solve this equation. We deduce that the numerical method of Trapezoidal is a good technique, which helped us to find an approximation of the exact solution with small error.

Share and Cite:

Elamin, M. and Altoum, S. (2022) A Comparison of Different Numerical Schemes to Solve Nonlinear First Order ODE. Journal of Applied Mathematics and Physics, 10, 865-876. doi: 10.4236/jamp.2022.103059.

1. Introduction

Consider the nonlinear first order ordinary differential equation

D ( y ) ( x ) = f ( x , y ( x ) ) . (1)

Ordinary differential equations occur in many scientific disciplines, including physics, chemistry, biology, and economics. In mathematics, an ordinary differential equation (ODE) is a differential equation containing one or more functions of one independent variable and the derivatives of those functions. Ordinary differential equations (ODEs) arise in many contexts of mathematics and social and natural sciences. Mathematical descriptions of change use differentials and derivatives. Various differentials, derivatives, and functions become related via equations, such that a differential equation is a result that describes dynamically changing phenomena, evolution, and variation. Some ODEs can be solved explicitly in terms of known functions and integrals. When that is not possible, the equation for computing the Taylor series of the solutions may be useful. For applied problems, numerical methods for ordinary differential equations can supply an approximation of the solution. In addition, some methods in numerical partial differential equations convert the partial differential equation into an ordinary differential equation, which must then be solved. Euler method (also called forward Euler method) is a first-order numerical procedure for solving ordinary differential equations (ODEs) with a given initial value. It is the most basic explicit method for numerical integration of ordinary differential equations and is the simplest Runge-Kutta method [1] [2] [3]. The backward Euler method (or implicit Euler method) is one of the most basic numerical methods for the solution of ordinary differential equations, the backward Euler method has order one. This means that the local truncation error (defined as the error made in one step) is O ( h 2 ) . The error at a specific time t is O ( h ) . It is similar to the (standard) Euler method, but differs in that it is an implicit method. This differs from the (forward) Euler method in that the latter uses f ( t k , y k ) in place of f ( t k + 1 , y k + 1 ) . The backward Euler method is an implicit method: the new approximation y k + 1 appears on both sides of the equation, and thus the method needs to solve an algebraic equation for the unknown y k + 1 . For non-stiff problems, this can be done with fixed-point iteration [4] [5] [6] [7]. This paper is organized as follows: In Chapter 2 we presented three simplest numerical stencils. In Chapter 3 we introduce a numerical formulation of ODE and apply examples.

2. Three Simplest Numerical Stencils

2.1. Forward Euler Stencil

The purpose of this paper is to derive the three simplest numerical stencils to solve the first order equation

D ( y ) ( x ) = f ( x , y ( x ) ) . (2)

In this expression, f is assumed to be a known function of the independent variable x and the function that we are trying to solve for y ( x ) . The simplest numerical stencils to solve this equation will give us an approximation to y at some point x = X + h given some knowledge of y at x = X . All of these stencils are based on the Taylor series approximation for y ( x ) about x = X to linear order:

y ( x ) = y ( X ) + D ( y ) ( X ) ( x X ) + O ( ( x X ) 2 ) . (3)

Let us define h as the difference between x and X, and then get rid of x in the above expression:

h = x X

y ( h + X ) = y ( X ) + D ( y ) ( X ) h + O ( h 2 ) . (4)

Now, we can remove the first derivative of y by making use of the differential equation:

D ( y ) ( X ) = f ( X , y ( X ) )

y ( X + h ) = y ( X ) + f ( X , y ( X ) ) h + O ( h 2 ) (5)

The forward Euler algorithm involves discarding the terms of order h2 and higher in this expression and hence obtaining an approximation to y ( X + h ) in terms of y ( X ) . We can accomplish this by converting the above series into a polynomial using the convert/polynom command. Also, we can take X = x i as the ith point on an evenly spaced lattice x i = x 0 + i h , where h is the lattice spacing and i is an integer; it then follows that “ X + h = x i + 1 ”. Furthermore, we label the numeric approximation of y ( x ) at x = x i a “ y i and approx; y ( x i ) ”. Implementing these steps and notational changes:

y ( h + X ) = y ( X ) + f ( X , y ( X ) ) h

[ y ( h + X ) = y i + 1 , y ( X ) = y i , X = x i ]

y i + 1 = y i + f ( x i , y i ) h (6)

The last expression is the forward Euler stencil for solving ode. It is called an explicit algorithm because the quantity we wish to calculate y i + 1 is given explicitly in terms of y i .

2.2. Backward Euler Stencil

The backward Euler stencil is obtained in a similar fashion, except we identify h, y i , and y i + 1 differently:

h = X x

y ( h + X ) = y ( X ) ( D ( y ) ) ( X ) h + O ( ( h ) 2 )

y ( h + X ) = y ( X ) f ( X , y ( X ) ) h + O ( ( h ) 2 )

y ( h + X ) = y ( X ) f ( X , y ( X ) ) h

y ( h + X ) = y i , y ( X ) = y i + 1 , X = x i + 1

y i = y i + 1 f ( x i + 1 , y i + 1 ) h . (7)

This stencil is explicit because it will not in general be possible to algebraically isolate what we want to calculate, i.e. y i + 1 = ( x i + 1 ) , except for very specific forms of f. We can rearrange the stencils to better demonstrate their geometric meaning:

f ( x i , y i ) = y i + y i + 1 h

f ( x i + 1 , y i + 1 ) = ( y i + y i + 1 ) / h . (8)

These forms illustrate that the forward Euler stencil (first equation) is a simple approximation of the first derivative of y ( x ) in the interval x [ x i , x i + 1 ] using ode evaluated at the left hand side of the interval. Conversely, the backward Euler stencil uses the differential equation to evaluate the derivative at the righthand side of the interval [8] [9].

2.3. Trapezoidal Method

There is another stencil we can derive that is the average of these two approaches:

1 2 f ( x i , y i ) + 1 2 f ( x i + 1 , y i + 1 ) = y i + y i + 1 h . (9)

This is called the trapezoidal method, and it uses ode evaluated at both ends of the interval to approximate y ( x ) . Like the backward Euler stencil, it represents an implicit scheme.

3. Numerical Formulation

As an example, we can look at what these stencils look like for the special case of f ( x , y ) = λ y , where λ is a constant:

λ y i = y i + y i + 1 h Forward Euler

λ y i + 1 = y i + y i + 1 h Backward Euler

λ y i + 1 2 λ y i + 1 = y i + y i + 1 h Trapezoidal .

For this special case, we see that it is possible to isolate y i + 1 for each stencil. Let’s do this using a loop:

y i + 1 = y i ( h λ + 1 ) Forward Euler

y i + 1 = y i h λ 1 Backward Euler

y i + 1 = y i ( h λ + 2 ) h λ 2 Trapezoidal .

Now, lets go back to the general case by undefined f:

f ( x i , y i ) = ( y i + y i + 1 ) / h

f ( x i + 1 , y i + 1 ) = ( y i + y i + 1 ) / h

( 1 / 2 ) f ( x i , y i ) + ( 1 / 2 ) f ( x i + 1 , y i + 1 ) = ( y i + y i + 1 ) / h .

We now want to determine what the error is in each stencil. To do this, we need to rewrite each of them in the standard form

y i + 1 y i h Φ ( x i , x i + 1 , y i , y i + 1 ) = 0

therefore,

y i + 1 y i f ( x i , y i ) h = 0

y i + 1 f ( x i + 1 , y i + 1 ) h y i = 0

y i + 1 h ( ( 1 / 2 ) f ( x i , y i ) + ( 1 / 2 ) f ( x i + 1 , y i + 1 ) ) y i = 0.

Note that these relations define our numeric stencils in these sense that they give exact relations between the approximations y i and y i + 1 . But if we replace the approximations with the exact values of y ( x ) they are supposed to represent, the above will represent only approximate equalities. That is, if we make the changes x i x , x i + 1 x + h , y i y ( x ) , y i + 1 y ( x + h ) , the left hand sides of the above equations will only be approximately equal to zero. We call the magnitude of the discrepancy the “one step error” or “local error” in the stencil. Hence, the one step error in the various stencils will be:

y i = y ( x ) , y i + 1 = y ( x + h ) , x i = x , x i + 1 = x + h

Error Forward Euler = y ( x + h ) y ( x ) f ( x , y ( x ) ) h

Error Backward Euler = y ( x + h ) y ( x ) f ( x , y ( x ) ) h

Error Trapezoidal = y ( x + h ) f ( x + h , y ( x + h ) ) h y ( x )

To estimate the magnitudes of these errors, we expand each of the above expression as a power series about h = 0 (since we are implicitly assuming h is a small quantity):

Error Forward Euler = ( f ( x , y ( x ) ) + D ( y ) ( x ) ) h + 1 / 2 ( D ( 2 ) ) ( y ) ( x ) h 2 + 1 / 6 ( D ( 3 ) ) ( y ) ( x ) h 3 + O ( h 4 )

Error Backward Euler = ( f ( x , y ( x ) ) + D ( y ) ( x ) ) h + ( α 1 ) h 2 + α 2 α 3 + O ( h 4 )

where,

α 1 = 1 / 2 ( D ( 2 ) ) ( y ) ( x ) D 1 ( f ) ( x , y ( x ) ) D 2 ( f ) ( x , y ( x ) ) D ( y ) ( x )

α 2 = 1 / 6 ( D ( 3 ) ) ( y ) ( x ) 1 / 2 ( D ( y ) ( x ) ) 2 ( D 2,2 ) ( f ) ( x , y ( x ) ) 1 / 2 D 2 ( f ) ( x , y ( x ) ) ( D ( 2 ) ) ( y ) ( x )

α 3 = ( D 1 , 2 ) ( f ) ( x , y ( x ) ) D ( y ) ( x ) 1 / 2 ( D 1 , 1 ) ( f ) ( x , y ( ( x ) ) ) h 3

Error Trapezoidal = ( β 1 ) h + ( β 2 ) h 2 + ( β 3 β 4 ) h 3 + O ( h 4 )

where,

β 1 = f ( x , y ( x ) ) + D ( y ) ( x )

β 2 = 1 / 2 ( D ( 2 ) ) ( y ) ( x ) 1 / 2 D 1 ( f ) ( x , y ( x ) ) 1 / 2 D 2 ( f ) ( x , y ( x ) ) D ( y ) ( x )

β 3 = 1 / 6 ( D ( 3 ) ) ( y ) ( x ) 1 / 4 ( D ( y ) ( x ) ) 2 ( D 2,2 ) ( f ) ( x , y ( x ) )

β 4 = 1 / 4 D 2 ( f ) ( x , y ( x ) ) ( D ( 2 ) ) ( y ) ( x ) 1 / 2 ( D 1,2 ) ( f ) ( x , y ( x ) ) D ( y ) ( x ) 1 / 4 ( D 1,1 ) ( f ) ( x , y ( x ) ) .

Notice that first, second and third derivatives of y appear explicitly in these expressions. The first derivative terms can be removed by making use of ode. The second derivative can also be removed by examining the derivative of ode:

( D ( 2 ) ) ( y ) ( x ) = D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) d d x y ( x )

and

d d x y ( x ) = f ( x , y ( x ) )

( D ( 2 ) ) ( y ) ( x ) = D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) .

Similarly, the third derivative can be removed

( D ( 3 ) ) ( y ) ( x ) = ( D 1,1 ) ( f ) ( x , y ( x ) ) + ( D 1,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) + ( ( D 1,2 ) ( f ) ( x , y ( x ) ) + ( D 2,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) ) f ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) ( D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) ) .

We now substitute our formulae for the derivatives of y into the error expressions:

Error Forward Euler = γ 1 O ( h 2 ) + ( γ 2 + γ 3 + γ 4 ) O ( h 3 ) + O ( h 4 ) (10)

where,

γ 1 = ( 1 / 2 D 1 ( f ) ( x , y ( x ) ) + 1 / 2 D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) )

γ 2 = 1 / 6 ( D 1,1 ) ( f ) ( x , y ( x ) ) + 1 / 6 ( D 1,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) )

γ 3 = 1 / 6 ( ( D 1,2 ) ( f ) ( x , y ( x ) ) + ( D 2,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) ) f ( x , y ( x ) )

γ 4 = 1 / 6 D 2 ( f ) ( x , y ( x ) ) ( D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) )

Error Backward Euler = γ 5 ( h 2 ) + ( γ 6 + γ 7 γ 8 γ 9 ) h 3 + O ( h 4 ) (11)

where,

γ 5 = ( 1 / 2 D 1 ( f ) ( x , y ( x ) ) 1 / 2 D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) )

γ 6 = 1 / 3 ( D 1,1 ) ( f ) ( x , y ( x ) ) 5 / 6 ( D 1,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) )

γ 7 = 1 / 6 ( ( D 1,2 ) ( f ) ( x , y ( x ) ) + ( D 2,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) ) f ( x , y ( x ) )

γ 8 = 1 / 3 D 2 ( f ) ( x , y ( x ) ) ( D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) )

γ 9 = 1 / 2 ( f ( x , y ( x ) ) ) 2 ( D 2,2 ) ( f ) ( x , y ( x ) )

Error Trapezoidal = ( γ 10 + γ 11 γ 12 γ 13 ) h 3 + O ( h 4 ) (12)

where,

γ 10 = 1 / 12 ( D 1,1 ) ( f ) ( x , y ( x ) ) 1 / 3 ( D 1,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) )

γ 11 = 1 / 6 ( ( D 1,2 ) ( f ) ( x , y ( x ) ) + ( D 2,2 ) ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) ) f ( x , y ( x ) )

γ 12 = 1 / 12 D 2 ( f ) ( x , y ( x ) ) ( D 1 ( f ) ( x , y ( x ) ) + D 2 ( f ) ( x , y ( x ) ) f ( x , y ( x ) ) )

γ 13 = 1 / 4 ( f ( x , y ( x ) ) ) 2 ( D 2,2 ) ( f ) ( x , y ( x ) ) .

We see that the local error for the forward and backward schemes is O ( h 2 ) . Furthermore, the leading order terms for those stencils are the negative of the other one. Since the trapezoidal scheme is the average of the forward and backward algorithms, this explains why the leading order error for the trapezoidal scheme is O ( h 3 ) . In other words, the trapezoidal scheme is more accurate than the other two. Note that if all we are after is the magnitude of the leading order terms in the errors, we can just expand the above in a low order series:

Error Forward Euler = O ( h 2 ) (13)

Error Backward Euler = O ( h 2 ) (14)

Error Trapezoidal = O ( h 3 ) . (15)

We now turn our attention to actual numerical algorithms employing these stencils. Since the forward Euler scheme is explicit, it is particularly easy to develop some code for it that works for arbitrary functions f. It is useful to rewrite the stencil with y i + 1 isolated on the LHS:

y i + 1 = y i + f ( x i , y i ) h

Now we can transcribe this as a mapping that takes the step size and the old values of y i and x i and returns the new value y i + 1 y new : = ( h , x old , y old ) y old + f ( x old , y old ) h We could have equivalently accomplished this by using the unapply command, which converts expression into mappings without having to re-write them manually: y new : = ( h , y 2 , y 3 ) y 3 + f ( y 2 , y 3 ) h Here is a procedure that calculates the numerical solution of ode in the interval x [ 0,1 ] once the form of f ( x , y ) has been fixed. Its arguments are initial data in the form y ( 0 ) = y 0 and the number of steps N. The output is a list of points, which we compare in the plot to the output generated by numeric for the same problem.

Example: Solve the equation f : = ( x , y ) y 2 + 2 x

D ( y ) ( x ) = ( y ( x ) ) 2 + 2 x , y ( 0 ) : = 2 , N : = 15

Solution:

data : = [ 0,2 ] , [ 0.06666666667,1.733333333 ] , [ 0.1333333333,1.541925926 ] , [ 0.2000000000,1.401201333 ] , [ 0.2666666667,1.296976988 ] , [ 0.3333333334,1.220389256 ] , [ 0.4000000001,1.165543705 ] , [ 0.4666666668,1.128310896 ] ,

[ 0.5333333335,1.105660753 ] , [ 0.6000000002,1.095272817 ] , [ 0.6666666669,1.095297981 ] , [ 0.7333333336,1.104208359 ] , [ 0.8000000003,1.120701063 ] , [ 0.8666666670,1.143636338 ] , [ 0.9333333337,1.171998289 ] , [ 1.000000000,1.204870734 ]

Of course Figure 1 it is really comparing the results of two numeric approximations to the true solution of the problem. It is also useful to compare numeric answers to analytic results (if available). For the above choice of f ( x , y ) there is an analytic solution in terms of Airy functions:

Figure 1. Comparison between forward euler and dsolve numeric.

Analytical solution : = 2 1 3 ( ξ 1 ξ 2 + A i r y B i ( 1, 2 3 x ) ) ξ 3 ξ 4 + A i r y B i ( 2 3 x ) (16)

where

ξ 1 = A i r y A i ( 1 , 2 1 3 x ) ( ( 4 ) 3 5 / 6 π 3 Γ ( 2 / 3 ) 2 3 2 / 3 2 1 / 3 ) / ( ( 3 ) 3 1 / 6 Γ ( 2 / 3 ) 2 2 1 / 3 + 4 π 3 1 / 3 )

ξ 2 = 3 3 6 ( Γ ( 2 / 3 ) ) 2 2 3 + 4 π 3 3

ξ 3 = ( ( 4 ) 3 5 / 6 π 3 ( Γ ( 2 / 3 ) ) 2 3 2 / 3 2 3 ) A i r y A i ( 2 3 x )

ξ 4 = 3 3 6 ( Γ ( 2 / 3 ) ) 2 2 3 + 4 π 3 3 .

Here is some code that generates a movie comparing how the numerical solution converges to the analytic solution as the number of cells is increased:

We would also like to examine the performance of the backward and trapezoidal stencils see Figure 2, so let’s make a simple choice of f ( x , y ) that admits an analytic solution allows each stencil to be solve for y i + 1 explicitly:

f : = ( x , y ) λ y , y ( 0 ) : = y 0

D ( y ) ( x ) = λ y ( x )

Analytic Solution : = y ( 0 ) e λ x

Forward Euler : y i + 1 = h λ y i + y i

Backward Euler : y i + 1 = y i h λ + 1

Figure 2. Comparison between backward and trapezoidal and dsolve numeric.

Trapezoidal : y i + 1 = y i + 1 / 2 h λ y i 1 1 / 2 h λ .

As for the above code, it will be useful to realize each stencil as a mapping with arguments h , λ and y i . We can do this using a loop and the unapply command:

stencil 1 : = ( h , λ , y 3 ) h λ y 3 + y 3

stencil 2 : = ( h , λ , y 3 ) y 3 h λ + 1

stencil 3 : = ( h , λ , y 3 ) y 3 + 1 / 2 h λ y 3 1 1 / 2 h λ .

Conversely, we could have accomplished the same thing in one line by using the map command, which applies the same mapping onto each element of a list (in this case we are applying operations onto each element of Stencils to generate a new list stencil):

stencil : = ( h , λ , y 3 ) ( h λ y 3 ) + y 3 ,

( h , λ , y 3 ) y 3 h λ + 1 ,

( h , λ , y 3 ) y 3 + 1 / 2 h λ y 3 1 1 / 2 h λ .

It is interesting to note that even though each of the stencils give different expressions for y i + 1 , they actually agree with one another to order ( h 2 ). To see this, let’s perform some Taylor series expansions:

Forward Euler y i + 1 = h λ y i + y i

Backward Euler y i + 1 = y i + h λ y i + O ( h 2 )

Trapezoidal y i + 1 = y i + λ y i h + O ( h 2 ) .

Now, here is a procedure Euler solution that calculates a numeric solution for y ( x ) for x [ 0,1 ] using N cells and assuming y ( 0 ) = y 0 and a given value of λ . The value of choice dictates which stencil is used: 1 for forward Euler, 2 for backward Euler, and 3 for trapezoidal. Here is a plot of the numeric output for each stencil compared to the actually solution (because we are going to plot 4 curves on our graph). It seems as if the trapezoidal method performs much better than the other two. N : = 15 , y 0 : = 2 , λ : = 4 .

We can quantify exactly how well the various stencils are doing by comparing the numeric and actual values for y at some fixed value of x, say x = 1 . We call this the global error in the numeric solution at x = 1 , which we denote by ε In this procedure, note that the [ N + 1 ] [ 2 ] suffix after Euler solution ( y 0 , N , λ ) has the effect of picking out the last element of the list (which is itself a list of 2 quantities), and then picking out the second element of that sub-list (which is the numerical answer for y ( 1 ) . We now generate a log-log plot of the global errors for each stencil as a function of N.

For N 100 , the error curves look linear on this log-log plot. This implies that above some threshold number of steps, the errors obey an approximate power law ε a N b where a and b are constants. We can determine the values of these parameters by fitting a power law to our error data using statistics. Figure 3 and Figure 4 illustrate four solutions Forward Euler, Backward Euler, Trapezoidal and analytic solution and their errors.

(PowerFit). We first need to regenerate our data for N 100 , the range for which we believe a power law ought to be valid. Then, we use the Statistics (PowerFit) command to perform the fit. Note that this function requires the input to be a matrix, which is why we use the convert Matrix structure. The raw output

Figure 3. Four solutions forward euler, backward euler, trapezoidal and analytic solution and dsolve numeric.

Figure 4. For N 100 , the error curve and dsolve numeric.

of the fitting algorithms is shown for each stencil, as well as the value of b in the power-law ε a N b .

Forward Euler : = [ 0.284665679953286 N 0.995851778662443 , ( 1.25643984007394 0.995851778662443 ) ] ,

b = 0.995851778662443 .

Backward Euler : = [ 0.301341961047440 N 1.00397729890028 , ( 1.19950957587335 1.00397729890028 ) ] ,

b = 1.00397729890028 .

Trapezoidal : = [ 0.196184023674760 N 2.00065878415391 , ( 1.62870216393926 2.00065878415391 ) ] ,

b = 2.00065878415391 .

We see that for asymptotically large numbers of steps N 1 , the global errors are O ( N 1 ) = O ( h ) for the forward and backward Euler stencils, and O ( N 2 ) = O ( h 2 ) for the trapezoidal method. This confirms the general expectation that for a stencil with one step error O ( h p ) , we expect the global error to obey

global error ( number of steps ) × ( one-step error for each step ) = N × O ( h p ) = O ( h 1 ) × O ( h p ) = O ( h p 1 ) .

Recall that we showed in (13, 14, 15) above that p = 2 for forward and backward Euler, and p = 3 for the trapezoidal algorithm.

4. Conclusion

In this paper, we have investigated the solution of ODEs using three approaches. The first one, is the Forward Euler method, the second is Backward Euler method and the third one is a numerical method based on Trapezoidal method. In general, we find the numerical method of Trapezoidal method, is a good technique that helped us to find an approximation of the exact solution with small error. In the last, we note the Trapezoidal method.

Acknowledgements

The author would like to thank the reviewers for their valuable comments which have improved the paper.

Conflicts of Interest

The authors declare that they have no competing interests.

References

[1] Altoum, S.H. (2018) Solution of Second Order Ordinary Differential Equation Associated with Toeplitz and Stiffness Matrices. American Journal of Applied Sciences, 15, 416-422.
https://doi.org/10.3844/ajassp.2018.416.422
[2] Altoum, S.H. (2018) Analytical and Three Numerical Approach to Solve Second Order ODEs. International Journal of Advanced Scientific and Technical Research, 4, 51-67.
https://doi.org/10.26808/rs.st.i8v4.06
[3] Williams, D. (1991) Probability with Martingales. Cambridge University Press, Cambridge, UK.
https://doi.org/10.1017/CBO9780511813658
[4] Baker, I.N. and Rippon, P.J. (1983) Convergence of Infinite Exponentials. Annales Academiac Scentiarium Fennicae, Series AI Mathematika, 8, 179-186.
https://doi.org/10.5186/aasfm.1983.0805
[5] Feynman, R.P. (1986) Surely You’re Joking, Mr. Feynman. Bantam Books, New York, USA, 71-72.
[6] Kuo, H.-H. (1996) White Noise Distribution Theory. CRC Press, Boca Raton.
[7] Rudin, W. (1976) Principles of Mathematical Analysis. McGraw Hill, USA.
[8] Euler, L. (1778) De formulis exponentialibus replicatus. Acta Academiac Petropolitenae, 1, 38-60.
[9] Folland, G.B. (1999) Real Analysis: Modern Techniques and Their Applications. 2nd Edition, Wiley, Hoboken, USA.

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.