🛠️ Steven Gong

Search

SearchSearch
  • Improved Forward Euler Method
  • Related

Feb 24, 2024, 1 min read

Time-Stepping Methods

Improved Forward Euler Method

This combines Forward Euler Method with Trapezoidal Rule.

Use average of slope at start and (approximate) end.

We use these two equations:

  1. The Forward Euler Step yn+1∗​=yn​+hf(tn​,yn​)
  2. The Trapezoidal Rule (turning it explicit using the value from step 1) yn+1​=yn​+2h​(f(tn​,yn​)+f(tn+1​,yn+1∗​))

Local truncation error of O(h3).

Related

  • Trapezoidal Method

Graph View

Backlinks

  • Time-Stepping Methods
  • Trapezoidal Rule (Crank-Nicolson Method)

Created with Quartz, © 2025

  • Blog
  • LinkedIn
  • Twitter
  • GitHub