top of page
Inaugurated by IN-SPACe
ISRO Registered Space Tutor

S3-SA4-0142

What is Converting from Decimal to Binary?

Grade Level:

Class 7

AI/ML, Data Science, Physics, Economics, Cryptography, Computer Science, Engineering

Definition
What is it?

Converting from Decimal to Binary means changing a number we usually use (decimal system, base 10) into a number that computers understand (binary system, base 2). It's like translating a number from our everyday language into a computer's secret code of only 0s and 1s.

Simple Example
Quick Example

Imagine you have 5 rupees. In the decimal system, we write it as '5'. But a computer sees this '5' differently. When converted to binary, '5' becomes '101'. This '101' is the computer's way of representing 5.

Worked Example
Step-by-Step

Let's convert the decimal number 13 into binary.

STEP 1: Divide 13 by 2. The quotient is 6, and the remainder is 1.
---STEP 2: Now, take the quotient (6) and divide it by 2. The quotient is 3, and the remainder is 0.
---STEP 3: Take the new quotient (3) and divide it by 2. The quotient is 1, and the remainder is 1.
---STEP 4: Take the new quotient (1) and divide it by 2. The quotient is 0, and the remainder is 1.
---STEP 5: Stop when the quotient becomes 0.
---STEP 6: Read the remainders from bottom to top. The remainders are 1, 1, 0, 1.
---So, the decimal number 13 is 1101 in binary.

Why It Matters

This conversion is super important because computers, phones, and all digital devices speak in binary! Learning this helps you understand the 'language' of technology. It's crucial for careers in Computer Science, Data Science, and even building AI, as these fields rely on how computers process information.

Common Mistakes

MISTAKE: Forgetting to read the remainders from bottom to top, leading to the reverse binary number. | CORRECTION: Always remember to collect the remainders starting from the last one and writing upwards to form the binary number.

MISTAKE: Not continuing the division until the quotient becomes 0. | CORRECTION: Keep dividing the quotient by 2 until you get a quotient of 0. Don't stop early!

MISTAKE: Confusing the quotient and remainder, especially when the number is odd. | CORRECTION: Clearly identify the quotient (the whole number result of division) and the remainder (what's left over) in each step.

Practice Questions
Try It Yourself

QUESTION: Convert the decimal number 7 to binary. | ANSWER: 111

QUESTION: What is the binary equivalent of the decimal number 25? | ANSWER: 11001

QUESTION: A shopkeeper sold 19 samosas. If a computer were to count these samosas, what would 19 look like in binary? | ANSWER: 10011

MCQ
Quick Quiz

Which of the following is the correct binary representation of the decimal number 10?

101

1001

1010

110

The Correct Answer Is:

C

To convert 10 to binary, divide by 2 repeatedly: 10/2 = 5 R 0, 5/2 = 2 R 1, 2/2 = 1 R 0, 1/2 = 0 R 1. Reading remainders from bottom to top gives 1010.

Real World Connection
In the Real World

Every time you type a message on WhatsApp or play a game on your mobile, your phone converts the numbers and letters you use into binary code. Even the signals sent by ISRO satellites are processed using binary, allowing us to get weather updates and GPS locations.

Key Vocabulary
Key Terms

DECIMAL SYSTEM: Our everyday number system using digits 0-9, base 10. | BINARY SYSTEM: A number system using only 0 and 1, base 2. | REMAINDER: The number left over after division. | QUOTIENT: The result of dividing one number by another. | BASE: The number of unique digits (including zero) used in a positional numeral system.

What's Next
What to Learn Next

Great job understanding how numbers speak to computers! Next, you can learn 'What is Converting from Binary to Decimal?'. This will teach you how to read the computer's language and convert it back to our numbers, completing the translation cycle!

bottom of page