Original Post
Explicit Euler algorithm: x' = x + v * dt v' = v + a * dt Semi-Implicit Euler algorithm: v' = v + a * dt x' = x + v * dt It was pointed out in an earlier thread that Explicit Euler might lead to stability problem because the x and v are stored separately this causing them to go out of sync. May I know if this problem still occur for Semi-Implicit Euler? Thanks.