Binary / Base 2
Binary, also called Base 2, is a number system that uses only two digits: 0 and 1. Every number you normally write in decimal (base 10) can also be written in binary using just these two digits.
Binary is a positional numeral system with a base (or radix) of 2. Each digit in a binary number represents a successive power of 2, starting from at the rightmost position. A binary number (where each is either 0 or 1) has the decimal value .
Key Formula
Where:
- = the digit (0 or 1) at position i, counting from the right starting at 0
- = the position of the leftmost digit
Worked Example
Problem: Convert the binary number 110101 to decimal (base 10).
Step 1: Write out the place values. Starting from the right, each position represents a power of 2.
Step 2: Line up each digit of 110101 with its place value and multiply.
Step 3: Evaluate each product.
Step 4: Add the results together to get the decimal value.
Answer: The binary number 110101 equals 53 in decimal.
Visualization
Why It Matters
Binary is the language of computers. Every piece of data a computer processes — text, images, music, video — is stored and manipulated as sequences of 0s and 1s. This is because electronic circuits have two natural states: on (1) and off (0). Understanding binary helps you see how digital technology works at its most fundamental level.
Common Mistakes
Mistake: Using powers of 10 instead of powers of 2 when converting binary to decimal.
Correction: In base 2, the place values are 1, 2, 4, 8, 16, 32, … (powers of 2), not 1, 10, 100, 1000, … (powers of 10). Always multiply each binary digit by the corresponding power of 2.
Mistake: Reading binary digits from left to right starting with instead of assigning powers from the right.
Correction: Powers of 2 are assigned starting from the rightmost digit as , then increasing leftward. The rightmost digit is always the ones place ().
