Backward Euler (BackwardEuler) - NIST
www.ctcms.nist.gov › ~langer › oof2manOct 01, 2021 · The Backward Euler method is a method of numerically integrating ordinary differential equations. Like the ForwardEuler method, it is first order in time, meaning that it makes an error of order on each step. It is more stable than the Forward Euler method, especially for diffusion equations, but requires more effort to compute.
MATHEMATICA TUTORIAL, Part 1.3: Euler Methods
www.cfm.brown.edu › Mathematica › ch3euler::usage = "euler[F, t0, Y0, b, n] gives the numerical solution to {Y' == F[t, Y], Y[t0] == Y0} over the interval [t0, b] by the n-step Euler's method. The result is in the form of a table of {t, Y} pairs." Note that this function uses an exact increment h rather than converting it explicitly to numeric form using Mathematica command N. Of course you can readily change that or accomplish the corresponding value by giving an approximate number for one of the endpoints.