The simplest simulation methods to implement are called explicit.
You use derivatives from past times to compute state variables at future times.
Forward Euler:
Explicit methods diverge for

Add/drop nodes: as climber approaches node, drop node, then reinsert as the climber moves away.
Unclear where to put the mass of the dropped node. Can't get right to the surface of the Earth.
Dropping a node changes DOF count, losing mode energy -- not a problem. But also distorts modes.
Resample the tether: re-discretize node placement as the climber moves to avoid closely approaching node.
Inter-node spacing more uniform. But complex. Still need add/drop or
you get large variation in node spacing with time (unnecessarily small
Resampling damps the high frequency mode. Not a problem.
Connect the climber to its attachment point via a spring: avoids infinite stiffness when passing tether nodes.
Sudden attachment point velocity change introduces spurious impulses in the tether.
Climber can oscillate relative to attachment point. High frequency, not a problem.

Low frequencies remain unchanged when resampling with different numbers of nodes (left) or an extra spring (center-right). Adding/dropping a node (center-left) is more disruptive to the mode frequencies. Unmodified model is shown for comparison (right). Mode 1 stays within 0.02841-0.02844 mHz throughout.
Modifications have limited impact on accuracy, as long as there are enough nodes to push the impacted modes to irrelevant high frequencies. Resampling and climber attachment via a spring outperforms adding/dropping nodes.
Implicit methods compute the state variable at future times by using derivatives from future times.
Backward Euler:
To compute
Iteratively solve for
Doesn't explode, but it is no more accurate.
So, why would you do this?

Explicit methods force you to use a time step that matches the fastest mode (stiffest degree of freedom). Simulation may be very slow.
Implicit methods allow you to select the fastest mode you care to model accurately.
Fast modes will decay and be inaccurate, but will not blow up the simulation.


Solve a very coarse 3D SE model using Explicit and Implicit adaptive solvers, as well as with fixed time steps.
Surprisingly, they all agree on the result, suggesting that all these methods have managed to accurately solve the model, despite the divergence, even using an explicit RK45 method.
Downward jumps because climber gets deflected to the side as it approaches node.

With larger time steps, the unphysical jumps go away completely! Good agreement over 10x step size variation. Climber hops over nodes, may be good to phase climber motion to voluntarily miss nodes.
The large step size is heavily damping the diverging mode, allowing us to get a more physically accurate result. Mystery really solved! The discretized model was flawed if solved accurately.
Benefit 1: Implicit methods allow simulation of stiff systems without needing small time steps.
Benefit 2: A solver that heavily damps unphysical high frequency modes may produce a solution that better matches the non-discretized system. A perfect integration of the discretized model gives garbage. A less perfect integration gives good results. Analogy with image focus:

Split the derivative into two parts, one explicit, one implicit. (Higher order methods are available.)
IMEX Euler:
You still need to solve an equation, but if
For the space elevator simulation:


Climbers approaching tether nodes in a ball and spring simulation break the simulation in two ways:
Explicit solvers may go unstable due to the high frequency mode.
Exactly solving the model seems to have unphysical behavior.
So far, we have focused on avoiding these problems by changing the discretization to avoid high stiffness, adding complexity and not always fully correcting the problem.
Instead we can keep the naive discretization and select a suitable implicit solver.
An IMEX method can be a lower computation load approach to getting rid of the highest frequency mode that causes climber jumps when passing nodes. But you still need to capture all the other high frequency modes so smaller time steps are needed than for fully implicit.

Note: All the modes are shifting as the climber climbs, but the shift is imperceptible for most of them over this height scale.