Binary Number System
Have you ever wondered how computers think? They don't use the same numbers we do! We use ten digits (

What Is the Binary Number System?
The binary number system is a way of representing numbers using only two digits:
Think about the numbers you use every day. This is called the decimal or base-10 system. The name "base-10" comes from the fact that we use ten unique digits to write any number:
Once we count past
A Quick Look at Our Base-10 System
Before we dive deeper into binary, let's quickly review how our own number system works. The key is place value. Every position a digit holds in a number has a specific value.
Let's take the number
hundreds tens ones
We can also write this using powers of
Or, for older students:
Each place to the left is
How Does Place Value Work in Binary?
Binary place value works just like decimal place value, but instead of multiplying by
- Ones place (
) - Twos place (
) - Fours place (
) - Eights place (
) - Sixteens place (
) - And so on...
Each place value is double the one to its right. Here is a table that shows the binary place values:
| Power of 2 | ||||||||
|---|---|---|---|---|---|---|---|---|
| Decimal Value |
So, when we see a binary number like
How Do You Convert from Binary to Our Everyday Numbers?
Converting a binary number into a decimal number is a great way to start understanding the system. It's like translating from a secret code! All you have to do is add up the place values for every digit that is a
Here are the steps:
- Write down the binary number.
- Above each digit, write its place value (
) starting from the right and moving left. - Look for all the places where the binary digit is a
. - Add the place values from those positions together.
- The sum you get is the decimal equivalent of the binary number!
Let's convert the binary number
Step 1 & 2: Write the number and its place values.
Step 3 & 4: Identify the columns with a
There is a
So, we add:
Step 5: Calculate the final sum.
Therefore, the binary number
How Do You Convert Our Numbers into Binary?
Now let's try the reverse: converting a familiar decimal number into its binary form. This might seem tricky at first, but it's a simple process of repeated division. We call this the 'Division by 2' method.
Here are the steps:
- Start with your decimal number.
- Divide this number by
. - Write down the whole number result and the remainder. The remainder will always be either
(if the number was even) or (if the number was odd). - Take the whole number result from the previous step and divide it by
again. - Continue this process, dividing the result by
each time, until the result is . - To find the binary number, write down all the remainders you found, starting from the bottom and going to the top.
This last step is the most important! Reading the remainders in the wrong order is a very common mistake.
Let's convert the decimal number
We will repeatedly divide by
with a remainder of with a remainder of with a remainder of with a remainder of with a remainder of
Now that we've reached a result of
The remainders are:
So, the decimal number
Why Is Binary So Important for Computers?
This might seem like a lot of work just to write numbers in a different way. So why bother? The answer is simple: computers.
A computer is made of billions of tiny electronic switches called transistors. Each switch can be in one of two states: it can be ON or it can be OFF. There is no in-between state. This two-state system is a perfect match for the binary number system!
- ON can be represented by the digit
. - OFF can be represented by the digit
.
Every single thing a computer does, from showing your favorite video to calculating a math problem, is broken down into a massive sequence of these ON and OFF signals. The letter 'A' on your screen is stored as a specific binary code (
Let's Try One More Conversion
Practice is the best way to get comfortable with binary. Let's do one more conversion from a slightly larger binary number to a decimal number to make sure you've got the hang of it.
Convert the binary number
Step 1 & 2: Write the number and its place values above it, starting from the right.
Step 3 & 4: Find the columns that have a
We have a
Let's add them up:
Step 5: Calculate the final sum.
So, the binary number
Common Mistakes When Working with Binary
As you learn about binary, there are a few common pitfalls to watch out for. Being aware of them can help you avoid making simple errors.
- Reading Remainders Backwards: This is the most common mistake when converting from decimal to binary. Remember the rule: after you finish dividing, you must read the list of remainders from the bottom to the top.
- Mixing Up Place Values: It's easy to forget that binary place values double each time (
). Some students accidentally use a pattern like or forget a value in the sequence. Always double-check your place values before adding. - Forgetting the Subscript: When you're working with both binary and decimal numbers, things can get confusing. Is
the number ten or the number two? Using subscripts helps keep everything clear. Write for decimal and for binary. - Thinking
is 'Ten': Our brains are so used to the decimal system that it's easy to see and think 'ten'. In binary, means one group of two and zero ones, which equals the decimal number .
Binary Numbers Quick Reference
Here is a quick summary of the most important points about the binary number system.
- What is it? The binary system is a base-2 number system that uses only two digits:
and . - Why is it used? It is the fundamental language of computers and all digital devices. The
and represent the OFF and ON states of electronic switches. - Place Values: Binary place values are based on powers of two. From right to left, they are
and so on. - Converting Binary to Decimal: To convert
to decimal, you add the place values for each . This would be . - Converting Decimal to Binary: To convert a decimal number like
to binary, use repeated division by . Then, read the remainders from the bottom up to get the answer ( ).
Frequently Asked Questions
What are the two digits in binary called?
The digits
Why is the binary system also called 'base-2'?
It's called base-2 because it uses only two unique digits (
How do you count past 1 in binary?
Just like in our decimal system when we run out of digits after 9, we add another place value to make 10. In binary, after
What's the biggest number you can make with 8 bits?
With 8 bits (which is called a byte), the largest number is
Is there a base-8 or base-16 system?
Yes! Computer scientists and programmers often use the octal (base-8) and hexadecimal (base-16) systems. They are useful because they serve as a compact, human-readable way to represent long strings of binary numbers.
How is binary used in things other than computers?
The concept of a two-state system is everywhere. A light switch is either on or off. A true/false question has only two possible answers. Even Braille, the writing system for the visually impaired, uses patterns of raised and unraised dots, which is a binary system.
Can you add and subtract binary numbers?
Absolutely! All standard arithmetic operations like addition, subtraction, multiplication, and division can be performed with binary numbers. The rules are simple and consistent, making it easy for computers to calculate them.