A simple numerical method for solving differential equations. If and an initial condition is known, y = y0 when x = x0, then Euler’s method generates a succession of approximations yn + 1 = yn + hf(xn,yn) where xn = x0 + nh, n ≥ 1. This takes the known starting point and moves along a straight line segment with horizontal distance h in the direction of the tangent at (x0,y0). The process is repeated from the new point (x1,y1) etc. If the step length h is small enough, the tangents are good approximations to the curve and the method will provide a reasonable accurate estimate. Compare Runge-Kutta methods.