**Fast inverse square root** — is that what you're after? The famous Quake III algorithm: ```c float Q_rsqrt(float number) { long i; float x2, y; const float threehalfs = 1.5F; x2 =