Skip to main content
Skip to main content

What is Binary?

Visual comparison of decimal and binary number systems
Comparing decimal and binary number systems

Binary is a number system that uses only two digits: 0 and 1. This is different from the decimal system we use every day which has ten digits (0-9).

Computers use binary because they work with electrical signals that can be either on (1) or off (0). Each binary digit is called a bit, and 8 bits make a byte.

Converting decimal (regular numbers) to binary helps us understand how computers store and process information. It's like learning a secret code that computers use!

How to Convert Decimal to Binary

Step-by-step visual guide showing conversion from decimal to binary
Visual guide to the conversion process

Here's how to convert decimal numbers to binary using the division-by-2 method:

Conversion Method

  1. Divide the decimal number by 2
  2. Write down the remainder (0 or 1)
  3. Divide the quotient by 2 again
  4. Repeat until the quotient is 0
  5. The binary number is the remainders read from bottom to top
Let's practice with an example:

Example: Convert 13 to binary
Step 1: 13 ÷ 2 = 6 with remainder 1
Step 2: 6 ÷ 2 = 3 with remainder 0
Step 3: 3 ÷ 2 = 1 with remainder 1
Step 4: 1 ÷ 2 = 0 with remainder 1
Now read the remainders from bottom to top: 1101

So 13 in decimal is 1101 in binary!

Decimal to Binary Conversion Charts

Conversion charts help us quickly find binary equivalents without calculating each time. Here are two useful charts:

Basic Decimal to Binary Conversion Chart

Decimal Binary
00
11
210
311
4100
5101
6110
7111
81000
91001
101010

Powers of 2 Reference Chart

Power of 2 Decimal Value Binary Representation
2011
21210
224100
2381000
241610000
2532100000
26641000000
2712810000000

Real-World Examples

Everyday digital devices showing binary concepts
Digital devices using binary systems

Let's practice conversion with some real-world examples:

Example 1: A computer stores the number 5. What is its binary form?
Solution: 5 ÷ 2 = 2 R1, 2 ÷ 2 = 1 R0, 1 ÷ 2 = 0 R1 → 101

Example 2: Convert your age to binary. If you're 10 years old:
Solution: 10 ÷ 2 = 5 R0, 5 ÷ 2 = 2 R1, 2 ÷ 2 = 1 R0, 1 ÷ 2 = 0 R1 → 1010

Example 3: A pixel uses 8 bits (1 byte) to store color information. What's the largest decimal number that can be stored in 8 bits?
Solution: 28 - 1 = 255 (because binary 11111111 = 255)

Example 4: Convert binary 1101 back to decimal:
Solution: (1×8) + (1×4) + (0×2) + (1×1) = 8 + 4 + 0 + 1 = 13

Practice converting numbers you see around you - your house number, your favorite number, or the time!

Conversion Practice Quiz

Test your conversion skills with this 5-question quiz. Choose the correct answer for each question.

1. What is the binary equivalent of decimal number 3?
2. How would you write decimal 7 in binary?
3. What is the decimal value of binary 1001?
4. How many different numbers can be represented with 4 binary digits?
5. What is the first step in converting decimal to binary?

Frequently Asked Questions

Here are answers to common questions about decimal to binary conversion:

Number System Trivia

Discover interesting facts about number systems:

Copyright © 2025 Workybooks. Made with ♥ in California.