pub fn linear_root(a: f64, b: f64) -> Option<f64>
Returns the real root of ax + b = 0.
ax + b = 0
Returns None when a == 0.0.
None
a == 0.0