Binary Digits — Definition, Formula & Examples
Binary digits are the individual symbols used in the base-2 number system, where the only possible values are 0 and 1. Each binary digit is commonly called a "bit."
A binary digit is an element of the set {0, 1} that serves as a placeholder in a base-2 positional numeral system, where each position represents a successive power of 2 rather than a power of 10.
How It Works
In the decimal system you use every day, each place value is a power of 10 (ones, tens, hundreds, etc.). In binary, each place value is a power of 2: , , , , and so on. To find the decimal value of a binary number, multiply each binary digit by its place value and add the results. To convert a decimal number to binary, repeatedly divide by 2 and record the remainders from bottom to top.
Worked Example
Problem: Convert the binary number 1011 to decimal.
Step 1: Write out the place values from right to left as powers of 2.
Step 2: Multiply each binary digit by its place value.
Step 3: Add the products together.
Answer: The binary number 1011 equals 11 in decimal.
Why It Matters
Every computer, phone, and digital device stores and processes data using binary digits. Understanding binary builds a foundation for computer science courses and helps you see how number systems beyond base-10 work.
Common Mistakes
Mistake: Reading binary place values as powers of 10 (1, 10, 100, ...) instead of powers of 2 (1, 2, 4, 8, ...).
Correction: Always remember that binary is base-2. Each position doubles the previous one: 1, 2, 4, 8, 16, 32, and so on.
