Profile photo for Joe McCracken

Here is one line that brought down a multi billion dollar empire and brought 3D games to the masses.

From the C source code of Doom, the original ground breaking 3D game from the 90′s that changed the world. The comment by Carmack is original too, which leaves me to believe he did not write it, but took advantage of an existing formula that had not previously been used for 3D work.

i = 0x5f3759df - ( i >> 1 ); // what the fuck?

A seemingly magical way to compute the approximate inverse square root, a common calculation for determining distances to vectors in real-time 3D modelling, that normally needs compute intensive floating point arithmetic to do Isaac Newtons original approximation formula.

For example, what is the square root of 1089? You guess 30, see that's it's low by squaring it, add 1 and try again. Eventually you work out it's 33. It's a laborious task for computers.

This function has to be called millions of times to render a single complex 3D display, do that 30 times a second and you can see how important speed and efficiency are.

I was working at Silicon Graphics (SGI) back in the 90s as an engineer (MTS). In it's hayday, SGI was the darling of Wall St and Hollywood. Think of the amazing Jurassic Park and Terminator graphics they created back then.

This one line of C code did in software what SGIs proprietary custom floating point silicon chips did. SGI lost it's #1 business advantage overnight. It wasn't as accurate, but it was good enough to fool the eye of most users.

We played with a licenced copy of John D. Carmack’s (id Software) source code and implemented a version of Doom that ran on IRIX, our custom UNIX OS. We spent many hours playing Doom (QA testing!) It was a revelation. Up until then, SGI relied on expensive custom chips to do floating point calculations for it's 3D vector graphics.

This simple coding hack changed everything, it essentially put SGI out of business. Cheap PCs with commodity hardware suddenly could do the same 3D graphics as our $100k+ workstations. SGI had to pivot and focus on their server business, that eventually failed.

SGIs OpenGL is the only real legacy of those days that still lives on.

The impact of that one line of code cannot be overrestimated.

Understanding Quake’s Fast Inverse Square Root
An article and research paper describe a fast, seemingly magical way to compute the inverse square root ($1/\sqrt{x}$), used in the game Quake. I'm no graphics expert, but appreciate why square roots are useful. The Pythagorean theorem computes distance between points, and dividing by distance helps normalize vectors. (Normalizing is often just a fancy term for division.) 3D games like Quake divide by distance zillions (yes zillions) of times each second, so "minor" performance improvements help immensely. We don't want to take the square root and divide the regular way: exponentiation and division are really, really expensive for the CPU. Given these conditions, here's the magic formula to get $1/\sqrt{x}$, as found in Quake (my comments inserted): float InvSqrt(float x){ float xhalf = 0.5f * x; int i = *(int*)&x; // store floating-point bits in integer i = 0x5f3759df - (i >> 1); // initial guess for Newton's method x = *(float*)&i; // convert new bits into float x = x*(1.5f - xhalf*x*x); // One round of Newton's method return x; } Yowza! Somehow, this code gets $1/\sqrt{x}$ using only multiplication and bit-shift operations . There's no division or exponents involved -- how does it work? My Understanding: This incredible hack estimates the inverse root using Newton's method of approximation, and starts with a great initial guess. To make the guess, it takes floating-point number in scientific notation, and negates & halves the exponent to get something close the the inverse square root. It then runs a round of Newton's approximation method to further refine the estimate and tada, we've got something near the inverse square root. Newton's Method of Approximation Newton's method can be used to find approximate roots of any function. You can keep iterating the method to get closer and closer to the root, but this function only uses 1 step! Here's a crash-course on Newton's method (it was new to me): Let's say you have a function f(x) and you want to find its root (aka where f(x) = 0). Let's call your original guess "g". Newton's method gives you a way to get a new, better guess for the root: You can keep repeating this process (plugging in your new guess into the formula) and get closer approximations for your root. Eventually you have a "new guess" that makes f(new guess) really, really close to zero -- it's a root! (Or close enough for government work, as they say). In our case, we want the inverse square function. Let's say we have a number $i$ (that's all we start with, right?) and want to find the inverse square root: $1/\sqrt{i}$. If we make a guess "x" as the inverse root, the error between our original number and our guess "x" is: This is because x is roughly $1/\sqrt{i}$. If we square x we get $1/i$, and if we take the inverse we should get something close to $i$. If we subtract these two values, we can find our error. Clearly, we want to make our error as
View 48 other answers to this question
About · Careers · Privacy · Terms · Contact · Languages · Your Ad Choices · Press ·
© Quora, Inc. 2025