Change 14 to base 2

1 answer

To convert the decimal number 14 to binary (base 2), you can repeatedly divide the number by 2 and keep track of the remainders. Here’s how it works:

  1. 14 divided by 2 is 7, remainder 0.
  2. 7 divided by 2 is 3, remainder 1.
  3. 3 divided by 2 is 1, remainder 1.
  4. 1 divided by 2 is 0, remainder 1.

Now, write the remainders in reverse order (from bottom to top):

Thus, the binary representation of the decimal number 14 is 1110.