How do you say $10$ when it's in binary?

Solution 1:

As a professor who faces this issue every time I teach (cryptography and algorithms both tend to run into non-decimal bases), I have the following policy:

  • If decimal, just say the number (with the word "decimal" if we're mixing contexts)
  • If any other base, read the digits and say the name of the base

So I might say, "therefore the answer is one-zero-one binary, or 5 decimal."

I would never call 10 hex "ten". Nor would I call 10 binary "two."


The confusion here reminds me of this T-Shirt:

enter image description here

Solution 2:

I'd say "two"... A professor at my university said that you should call it with its actual "value", so 10 in binary is "two" in value. "Ten" means 10 units (in decimal), or 1010 in binary. Anyway I think it's just his own opinion.

Solution 3:

one plus one is two in any base, whether it is binary or decimal. ** is two asterisks, not "ten base two". "binary ten" or "ten base two" would be the binary representation of ten, which is $1010_{two}$, not $10_{two}$ which is two.

$10$ when it's in binary is two, just as when it's in decimal, $10$ is ten.

Of course, when read as a string of numerals, it is perfectly valid to read $10$ as "one-zero", no matter what base it is in.

Solution 4:

If you are thinking of these numbers as just strings of digits then, when speaking, I would just list the digits. Otherwise I would say "binary ten." If, after some conversation in which every number mentioned is a binary number I would suggest we simply drop the word "binary." If this is written I would use the notation Chris Taylor describes.

Solution 5:

So in most languages one reads "1111" as "one thousand, one hundred, ten and one" (though in English we use the dozenal word "eleven" instead of "ten and one"). One may also read it as “one, one, one, one” but that is not the number's proper name, but merely a list of its numeral digits. One could read this number as “fifteen”, but that is properly a decimal name for it (five tens), and it gets confusing when one starts reading “1010 0100” as “one hundred sixty two”, which names the number by its decimal representation rather than its binary representation. Both digit reading or decimal naming seem wrong. A better method would be to name numbers using the names of the digit place holders and the name of the quantities these represent (which is exactly how we do it with decimal numbers).

In decimal, we have special names for the powers of ten, which become the name of the digit's placeholder in a numeral. In British English these are:

one (unit), ten, hundred, thousand, ten-thousand, hundred-thousand;

million, ten-million, hundred-million, thousand million, ten-thousand-million, hundred-thousand-million;

billion, ten-billion, hundred-billion, thousand-billion, etc.

trillion, etc. quadrillion, etc.

As one can easily see, the British naming is systematic, cycling every six digits.

Just as it is important for number literacy that a student not think of the numeral 1 in decimal 6173 as representing one unit, but as representing a hundred units, so the student looking at the 1 in binary 0100 should not think of it as representing one unit but as representing eight units.

Once I teach my students how to read binary numerals using place-holder names, they begin to really understand the number that the numeral represents. So I teach my students that in binary, we can name the place of digits in the same systematic way using existing binary names, and thus produce appropriate binary names for the numerals:

one (unit), two, four, eight, nibble, two-nibble, four-nibble, eight-nibble;

byte, two-byte, four-byte, eight-byte, nibble-byte, two-nibble-byte, four-nibble-byte, eight-nibble-byte;

bibyte, two-bibyte, four-bibyte, eight-bibyte, nibble-bibyte, two-nibble-bibyte, four-nibble-bibyte, eight-nibble-bibyte;

tribyte, two-tribite, etc. quadrabyte, etc.

Note that since binary does not have numerals 2, 4, or 8, the words "two", "four", and "eight" always indicate the digit's place and quantity.

This naming is systematic, cycling every eight digits Here is an example of the convention using a binary numeral with twenty four bits (I divide the bytes in half with a comma to make it easier to identify the nibbles): 0001,0100 1111,1111 0110,1001 “One nibble; and four bibytes, Eight-, four-, two-, and one-nibble; and eight, four, two, and one bytes, Four- and two-nibble; and eight and one (units).”

This same system can be also used in quaternary, paired down so it cycles every four digits: units, fours, nibbles, four-nibbles, bytes, four-bytes, nibble-bytes, four-nibble-bytes, bibytes, four-bibytes, nibble-bibytes, four-nibble-bibytes, tribytes, etc. quadrabytes, etc. Here is the quaternary convention using twenty four bits: 0110 3333 1221 “One-nibble and four bibytes; Three fours- and three nibbles and three- fours and three bytes; Four- and two nibbles; and two fours and one (units).” (Note: since the numeral 4 is not used in quaternary, the word “four” always indicates a decimal place.)

(Note: Since the quaternary numeral “1111 1111” uses only the digit 1, it can be expressed in binary using alternate 0s and 1s, namely “01010101 01010101 01010101.” These two numerals are named exactly the same: “Four and one nibbles, four and one bibytes; four and one nibbles, four and one bytes; four and one nibbles, four and one (units).”)

This system can also be used in hexadecimal, cycling every two digits: one (unit), nibble, byte, nibble-byte, bibyte, nibble-bibyte, tribyte, etc. quadrabyte, etc.

The hexadecimal numeral “14 FF A9” is pronounced: “One nibble and four bibytes; Eff nibbles and Eff bytes; Ace nibbles and nine (units).” NB: We say “Ace” instead of “a” so that the numeral A (one more than nine) is not confused with the indefinite article. Thus “Ace-nibble” equals decimal one-hundred sixty; but “a nibble” is “one nibble”, i.e. decimal sixteen. The hexadecimal numeral “11 11 11” is pronounced exactly the same as the quaternary numeral “0101 0101 0101” and the binary numeral “00010001 00010001 00010001”, namely: “One nibble and one bibytes; one nibble and one bytes; and one nibble and one (units).”