On 04/07/03, John Erdman <jperdman at earthlink.net> wrote: > > Check your powers of 2 math.. you're off by a factor of 2^10 . I.E. 2^10 = > Kilo; 2^20 = Mega and 2^30 = Giga. > > Uhhh ... By any chance were you one of the guys who programmmed the > navigation of the Mars probe using English rather than metric units???. > Hate to butt in, but according to <http://physics.nist.gov/cuu/Units/prefixes.html>, 10^3 is kilo, 10^6 is mega, and 10^9 is giga. These designate decimal multiples and you shouldn't use them to represent binary multiples. For binary multiples, see <http://physics.nist.gov/cuu/Units/binary.html>, where 2^10 = 1024 is kibi, 2^20 = 1024 x 1024 = 1048576 is mebi, and 2^30 =1024^3 = 1073741824 is gibi.