All Topics
All Topics
Technology
Technology
Design
Design
Programming
Programming
Science
Science
News
News
Gaming
Gaming
Entertainment
Entertainment
Business
Business
Finance
Finance
Sports
Sports
Health
Health
Food
Food
Travel
Travel
Art
Art
Music
Music
Books
Books
Education
Education
Politics
Politics
Personal
Personal
No algorithm. No AI slop. No ads. Just RSS. Pro-human. Indie writers. Real journalism. Open web. Chronological. Hand toasted.

Debunking the Myth: Implicit ODE Solvers Are Not Universally Superior to Explicit Methods

By

cbolton

8mo ago· 21 min readenInsight

Summary

This article challenges the common belief that implicit ODE solvers are universally more robust than explicit methods. It argues that the choice between implicit and explicit solvers depends on the specific mathematical properties of the differential equation being solved, with neither approach being universally superior. The author explains that implicit methods excel on stiff problems but can be inefficient or problematic for certain equation types, while explicit methods have their own advantages in specific contexts.

Key quotes

· 3 pulled
A very common adage in ODE solvers is that if you run into trouble with an explicit method, usually some explicit Runge-Kutta method like RK4, then you should try an implicit method.
Implicit methods, because they are doing more work, solving an implicit system via a Newton method having 'better' stability, should be the thing you go to on the 'hard' problems.
This turns out to not be true, and really understanding the ODEs will help us understand better why no ODE solver is best.
Snippet from the RSS feed
A very common adage in ODE solvers is that if you run into trouble with an explicit method, usually some explicit Runge-Kutta method like RK4, then you should try an implicit method. Implicit methods, because they are doing more work, solving an implicit

You might also wanna read