I was getting a little confused with the representation of different units of bytes.

It is accepted throughout that 1 byte = 8 bits

However, in a lot of sources I have seen that

1 kiloByte = 2^ 10 bytes = 1024 bytes

AND

1 kiloByte = 1000 bytes

Doesn't this contradict as in both cases it is stated that 1 byte is 8 bits...?

Different sources claim different reasons for these different representations, thus I am not sure what the most important/real reason is for this rather confusing difference in representation.

Can someone please explain and clarify?

Thanks!

link|improve this question

That question doesn't desever a downvote, as it is a real an interesting question. +1 – Clement Herreman Jun 29 '11 at 15:36
feedback

6 Answers

up vote 1 down vote accepted

Strictly and technically speaking, 1 KiloBytes = 1024 bytes. This is because everything is represented by 2^n in hardware.

However, for ease of calculation (and for marketing concerns), it is rounded to 1 KiloByte = 1000 bytes.

Edit : To be more strict, we should use "KibiBytes" to avoid error as "kilo" means "x10" in the SI notation.

link|improve this answer
4  
Simply put, KiloBytes now means 1000. KibiBytes is to be used for the binary 1024. KiloBytes meaning both is deprecated. – Brian Knoblauch Jun 30 '11 at 12:14
Nice synthesis @Brian – Clement Herreman Jun 30 '11 at 14:22
Please don't capitalize letters randomly like that. – Nayuki Minase Nov 5 '11 at 19:40
1  
This answer is factually wrong in every sentence. Strictly speaking, 1 kilo is defined to be exactly 1000, not 1024 or any other number. However, due to lazyness and the circumstance that 1000 is very close to 2^10, which is a round number represented in binary, kilo was often rounded to 1024. – drhirsch Nov 7 '11 at 16:13
feedback

It is accepted throughout that 1 byte = 8 bits

However, in a lot of sources I have seen that

1 kiloByte = 2^ 10 bytes = 1024 bytes

AND

1 kiloByte = 1000 bytes

To make sure we're all clear, your question is "Is a kilobyte equal to 1024 bytes or 1000 bytes?".

Doesn't this contradict as in both cases it is stated that 1 byte is 8 bits...?

This is irrelevant to the question.

So, let's begin. In SI (metric), the multiplier of 1000 is called kilo, abbreviated k. k always means 1000, never anything else.

When binary computers entered the world, we noticed that 2 to the power of 10 is 1024, which is conveniently close to 1000. Computer engineers decided to abuse this coincidence and say that kilo means 1024. By extension, they say that mega means 10242 (instead of the proper definition of 10002), and so on with giga, tera, etc.

While the difference between 1000 and 1024 is small for many purposes, there are times when exact answers are required, and this is where the abusive terminology hurts everyone. Only after decades after kilo=1024 got established did anyone really try to fix the problem. The IEC proposed new prefixes for the binary multipliers: 1024 = kibi, 10242 = mebi, 10243 = gibi, etc.

In summary, the notion that kilo=1024 is an abusive deviation from the consistent SI definition of kilo=1000. While kilo=1024 is popular in the computer industry, it is nevertheless wrong and should be replaced by kibi=1024. Or numbers need to be recomputed to reflect the true definition of kilo/mega/etc. (For example, "512 MB" of RAM is actually about 536.9 MB.)

Btw, don't use random capitalization; it's spelled kilobyte, not kiloByte.

References and links:

link|improve this answer
2  
Can't delete my own answer as it's "accepted", but yours is better than mine. – Clement Herreman Nov 8 '11 at 10:00
Ah, I didn't know that behavior in the Stack Exchange software. Thank you for your feedback. – Nayuki Minase Nov 9 '11 at 22:24
feedback

I don't see what the byte to bits has to do with anything if you are asking whether 1 kiloByte is equal to 1024 or 1000 bytes. These measurements are not set in stone and are not really controlled at all. Computer makers can (and have) used the 1000 conversion to make it look like they have more memory.

The problem comes up when thinking about binary (base 2) or base 10. Base 10 you would use 1000, base 2, 1024.

link|improve this answer
feedback

When you talk about data information in computer science, you always have to calculate the result by a power of two. See what wikipedia says:

"In computing, a binary prefix is a specifier or mnemonic that is prepended to the units of digital information, the bit and the byte, to indicate multiplication by a power of 2. In practice the powers used are multiples of 10, so the prefixes denote powers of 1024 = 2^10."

Sometimes people use to round it as you have mentioned, but it is a bad use of it.

link|improve this answer
feedback

These are of course contradictions. Mathematically one kb is always 1024 bytes , but marketing departments of hard disk manufacturers choose other representations simply because it makes their hard drives look better in the specs. RAM manufacturers can't do this since RAM has to come in powers of 2 anyway.

link|improve this answer
1  
Disagree. Kilo always means 1000 in SI. It is computer engineers who abusively redefined it as 1024 for their convenience in their industry. – Nayuki Minase Aug 10 '11 at 16:08
1  
It has nothing to do with hard drive makers or their marketing departments. Hardware people don't always agree with software people what 1kB means. For instance, if you are designing a digital data transmission system, you are going to be working with kHz, MHz, or GHz; those in turn are translated to kBd, MBd, or GBd. Since k, M, and G are true SI prefixes in these instances, when you make the next step from Baud to Bytes you run into problems if you try to call kB 1024 bytes -- like 1kB takes 8.192 seconds to transfer over a 1kbps link (instead of exactly 8 seconds as expected). – Dan Moulding Nov 3 '11 at 19:27
@Dan: The capacity of a hard drive on the hard drive's box should be equal to what windows / Linux / MacOS shows as capacity. Anything else is just purely misleading. If there really was a technical reason for this difference, it would still be easy to convert whatever the Hardware guys deem appropriate as a definition for a MB to the common definition used by the OS before printing it on the box. However, this is conveniently "forgotten", making the Hard disk look substantially bigger than it actually is for customers. Do you really think this has nothing to with marketing? – Adrian Grigore Nov 15 '11 at 9:34
And what if Windows / Linux / MacOS show the capacity differently (which, btw, they do)? What should they print on the box? Two different sizes? Three different sizes? My, that would really clear things up for the consumer. – Dan Moulding Nov 17 '11 at 17:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.