pub fn balancing_lever_arm(known_torque: f64, force: f64) -> Option<f64>Expand description
Computes the balancing lever arm needed for a force to cancel a known torque.
Formula: r_balance = -τ_known / F
Returns None when force is zero, when either input is not finite, or when the computed
result is not finite.