Euler method
This online calculator implements Euler's method, which is a first order numerical method to solve first degree differential equation with a given initial value.
You can use this calculator to solve first degree differential equation with a given initial value using Euler's method.
To use this method, you should have differential equation in the form
and enter the right side of the equation f(x,y) in the y' field below.
You also need initial value as
and the point for which you want to approximate the
value.
The last parameter of a method - a step size, is literally a step along the tangent line to compute next approximation of a function curve.
If you know the exact solution of a differential equation in the form y=f(x), you can enter it as well. In this case, calculator also plots the solution along with approximation on the graph and computes the absolute error for each step of the approximation.
Method explanation can be found below the calculator.
Euler method
So, let's suppose the have the following
If we calculate
we will find derivative y' at the initial point.
For sufficiently small , we can approximate next value of y as
Or, shorter
And in general case
We continue to calculate next y values using this relation until we reach target x point.
This is the essence of Euler's method. is the step size. The error on each step (local truncation error) is roughly proportional to the square of the step size, so the Euler method is more accurate if the step size is smaller. However, global truncation error is the cumulative effect of the local truncation errors and is proportional to the step size, and that's why the Euler method is said to be first order method.
More complicated methods can achieve a higher order (and more accuracy). One possibility is to use more function evaluations. This is illustrated by the Midpoint method
Comments