Mathwords logoMathwords

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: 20=12^0 = 1, 21=22^1 = 2, 22=42^2 = 4, 23=82^3 = 8, 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.
23,  22,  21,  20=8,  4,  2,  12^3,\; 2^2,\; 2^1,\; 2^0 = 8,\; 4,\; 2,\; 1
Step 2: Multiply each binary digit by its place value.
(1×8)+(0×4)+(1×2)+(1×1)(1 \times 8) + (0 \times 4) + (1 \times 2) + (1 \times 1)
Step 3: Add the products together.
8+0+2+1=118 + 0 + 2 + 1 = 11
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.