Loading...
3+
3
Login

Binary Place Value

The binary number system (base 2) is used by every digital computer and electronic device. Instead of the ten digits 0–9 used in decimal, binary uses only two digits: 0 and 1. Place values in binary are powers of 2 instead of powers of 10.

Binary Place Values

PlacePower of 2Value in Decimal
1st (rightmost)2⁰1
2nd2
3rd4
4th8
5th2⁴16
6th2⁵32
7th2⁶64
8th2⁷128

Converting Binary to Decimal

Multiply each binary digit by its place value, then add the results.

1011 in binary = (1×8) + (0×4) + (1×2) + (1×1) = 8 + 0 + 2 + 1 = 11

More Conversion Examples

BinaryCalculationDecimal
000111
001022
01014 + 15
100088
11118+4+2+115
100001616

Converting Decimal to Binary

Repeatedly divide by 2 and record the remainders. Read remainders from bottom to top.

13 ÷ 2 = 6 R 1  |  6 ÷ 2 = 3 R 0  |  3 ÷ 2 = 1 R 1  |  1 ÷ 2 = 0 R 1  →  13 = 1101 in binary

Why Binary?

Electronic circuits can easily represent two states: on (1) and off (0). This maps perfectly to binary digits, making binary the natural language of computers.

Key Points
  • Binary uses only digits 0 and 1.
  • Each place is a power of 2: 1, 2, 4, 8, 16, 32, …
  • To convert binary to decimal: sum the place values where a 1 appears.
  • To convert decimal to binary: divide repeatedly by 2 and read remainders upward.
  • Computers store all data as binary (bits).

Quick Practice

  1. Convert binary 1010 to decimal.
  2. Convert binary 11001 to decimal.
  3. Convert decimal 9 to binary.
  4. Convert decimal 25 to binary.
  5. What is the highest value a 4-bit binary number can hold?

Summary

Binary place values work exactly like decimal place values but with powers of 2 instead of powers of 10. Every decimal number has a unique binary equivalent, and this conversion is the foundation of all digital computing. Understanding binary place value builds the bridge between pure mathematics and computer science.

Home About Resources Dashboard