pub fn relativistic_kinetic_energy(mass: f64, speed: f64) -> Option<f64>Expand description
Computes relativistic kinetic energy KE = (γ - 1)mc² in joules.
Returns None when mass is negative or not finite, when speed is invalid, or when the
computed energy is negative or not finite.