BrightChamps Logo
Login
Creative Math Ideas Image
Live Math Learners Count Icon100 Learners

Last updated on July 9th, 2025

Math Whiteboard Illustration

Decimal Number System

Professor Greenline Explaining Math Concepts

The decimal number system uses 10 digits (0 to 9) with a base of 10. This number system has been in use since ancient times and is also known as the Arabic number system. Other number systems used in mathematics are binary, octal, and hexadecimal number systems. In this topic, we will be focusing on the decimal number system.

Decimal Number System for UK Students
Professor Greenline from BrightChamps

What is a Decimal Number System?

We use digits from 0 to 9 in the decimal number system. Since there are 10 numbers, the base number is 10. Unless stated otherwise, any number expressed without a base belongs to this number system, and its base is 10. In the decimal number system, the place values of a number are read from right to left; the first few place values are ones, tens, hundreds, thousands, and so on. Let’s consider the number 423.

 

Here, 3 is in the ones place (3 × 1 = 3)
  
2 is in the tens place (2 × 10 = 20)

4 is in the hundreds place (4 × 100 = 400) 

 

Now we can add all of them:  

400 + 20 + 3 = 423

 

To find the value of a number, we can multiply each digit by its place value and then add the products together.

Professor Greenline from BrightChamps

What are the Rules of the Decimal Number System?

The base of a decimal number system is 10, and it includes the digits 0 to 9 to represent the number’s place values. The digit in the tens place is 10 times greater than the digit in the ones place. Here are some rules related to the decimal number system:

 

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 are the 10 numbers in the decimal number system.

 

  • In the decimal number system, when a digit reaches 9 and we add 1, the digit becomes 10. However, since we only have digits from 0 to 9, we write 0 instead of 10. Then, carry over 1 to the next higher place value. So, when we go from 9 to 10, the number on the right becomes 0, and 1 is added to the left side, making it 10. 

 

Let us take an example to understand the rules better. If the number is (142)10 

(142)10 = 1 × 102 + 4 × 101 + 2 × 100

 

If the numbers have a decimal point, then the place value of the numbers after the decimal point continues in decreasing powers of 10.

For instance, if the given number is (35.27)10
(35.27)10 = (3 × 101) + (5 × 100 )+ (2 × 10-1) + (7 × 10-2

 

Therefore, (35.27)10 = 30 + 5 + 0.2 + 0.07 

Professor Greenline from BrightChamps

How to Convert into Decimal Number System?

The binary number system, decimal number system, octal number system, and hexadecimal number system are the four main types of number systems. Base numbers of each number system help in converting one number system to another.

Professor Greenline from BrightChamps

Binary to Decimal Conversion:

We use only two digits in the binary number system (0 and 1), and its base is 2. So, to convert a binary number to a decimal number, we must multiply every digit of the binary number by a power of 2. The exponent of 2 depends on the position of the binary number. The rightmost digit is multiplied by 20, the next digit is multiplied by 21, and so on. After the multiplication process is done, we add up the results to get the converted value. 

 

Here, we must multiply each binary number by the decreasing power of 2. Then add the results together to get the decimal number. 

 

The given binary number is (1011)2.

 (1011)2 = (1 × 23) + (0 × 22) + (1 × 21) + (1 × 20

              = (1 × 8) + (0 × 4) + (1 × 2) + (1 × 1) 

              = 8 + 0 + 2 + 1 

              = 11

 

Thus, (1011)2 = (11)10

Professor Greenline from BrightChamps

Octal to Decimal Conversion:

The octal number system has a base of 8. It has 8 digits, from 0 to 7, to represent numbers. To convert an octal number to a decimal number, multiply each digit by the decreasing power of 8 and add the products. Let us convert (167)8 to its decimal form. 

 

(167)8 = (1 × 82) + (6 × 81) + (7 × 80)

         = (1 × 64) + (6 × 8) + (7 × 1)

         = 64 + 48 + 7 

         = 119 

 

Thus, (167)8 = (119)10

After the conversion, the base power changes from 8 to 10.

Professor Greenline from BrightChamps

Hexadecimal to Decimal Conversion:

The hexadecimal number system uses 16 symbols: digits from 0 to 9 and letters from A to F. The conversion of a hexadecimal number to a decimal number happens when we multiply each digit of the hexadecimal number by the powers of 16. Once again, the rightmost digit will be multiplied by 160, the next digit by 161, and so on. After multiplying the digits by the powers of 16, we should add the results to obtain the converted value. 

 

(18)16 = (1 × 161) + (8 × 160)

           = (1 × 16) + (8 × 1)

           = 16 + 8 

           = 24

Thus, (18)16 = (24)10

Professor Greenline from BrightChamps

How to Convert From Decimal Number System to Other Systems

The conversion of decimal numbers to other number systems is similar to the conversion from a different number system to decimal. The key element in the conversion is the base number of each number system.

Professor Greenline from BrightChamps

Decimal to Binary Conversion:

Decimal numbers can be converted to binary by dividing the number repeatedly by 2 until the quotient becomes 0. In every step, the remainder is noted (either 1 or 0). In the end, the remainders are written from bottom to top to get the binary equivalent of the decimal number.

 

Dividend Remainder
138/2 = 69 0
69/2 = 34 1
34/2 = 17 0
17/2 = 8 1
8/2 = 4 0
4/2 = 2 0
2/2 = 1 0
1/2 = 0 1

 

Now write the remainder from bottom to top. Thus, the binary number of (138)10 is 100010102. 

Professor Greenline from BrightChamps

Decimal to Octal Conversion:

Decimal numbers can be converted to octal by dividing the number by 8 repeatedly until the quotient is less than 8. In every step, the remainder is noted. After the division process, the remainders are written from bottom to top to obtain the converted value. In the division process, the first remainder is known as the least significant digit (LSD), and the last remainder is called the most significant digit (MSD). Let’s see how to convert (65)10 to an octal number.

 

Dividing by 8 Quotient Remainder
65/8 8 1
8/8 1 0
1/8 0 1

 

Write the numbers obtained as remainders from bottom to top. 

Thus, (65)10 = (101)8

Professor Greenline from BrightChamps

Decimal to Hexadecimal Conversion:

Each decimal number will be divided by the base number of hexadecimal (16) until the quotient becomes 0. For example, convert the decimal number (150)10 to hexadecimal. 

 

Dividing by 16 Quotient Remainder
150/16 9 6
6/16 0 6

 

Now write the remainder from the bottom to the top to get the hexadecimal number. Thus,  (150)10 = (96)16

Professor Greenline from BrightChamps

Real-life Applications of Decimal Number System

The decimal number system plays a crucial role in determining the place value of each digit. The place value of each digit in a number is based on powers of 10. Here are some real-world applications of the decimal number system: 

 

  • To determine the place value of each digit in a number, the decimal number system with a base of 10 helps students perform basic arithmetic operations. 

 

  • The decimal number system helps us determine the value of the money we have. For example, if we have $288, we can easily understand its value, such as we have two hundred eighty-eight dollars. 

 

  • Mobile numbers, PIN codes, and numerical passwords rely on the decimal number system. It helps us to recognize and memorize passwords easily.
Max Pointing Out Common Math Mistakes

Common Mistakes and How to Avoid Them in Decimal Number System

It is easy to make mistakes while dealing with the decimal number system. Even the slightest of errors can change the final result completely. Therefore, it is important to avoid commonly made mistakes, and some of them are mentioned below:  

Mistake 1

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Confusion Between Place Values of Digits

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Students should learn the place values and the proper arrangement of them in a decimal number system. If they forget the place values, then the result will be incorrect. Keep in mind that the digit in the tens place is 10 times greater than the digit in the ones place.

 

For example, we can expand the number (142)10 as:

(142)10 = 1 × 102 + 4 × 101 + 2 × 100

Mistake 2

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Misunderstanding Numbers with Decimal Point

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Students should be properly taught about expanding numbers with a decimal point. According to the decimal number system, if the number has a decimal point, then the place value of the numbers after the decimal point continues in decreasing powers of 10.

 

For instance, if the given number is (25.2)10
(25.2)10 = 2 × 101 + 5 × 100 + 2 × 10 -1 +  7 × 10-2  

 

Therefore, (25.27)10 = 20 + 5 + 0.2 + 0.07

Mistake 3

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Forgetting the Base Number of the Decimal Number System 

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

Kids must learn that the decimal number system is based on the power of 10. It includes 10 digits from 0 to 9 to represent the place value of numbers. As we move to the left of a number, the place value increases by 10. If they forget the base number, it will lead to wrong place values and results.

 

For example, the decimal number is written as (436)1o, and the base number is written with the number.

Mistake 4

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Forgetting the Base Numbers of Other Number Systems

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

When converting a binary, octal, or hexadecimal number into a decimal number, each digit must be multiplied by the respective base number to get the decimal number. Therefore, students should learn the base number of each number system. The base value of the binary number system is 2, the octal number system has 8 as the base value, and the base value of the hexadecimal number system is 16.

Mistake 5

Red Cross Icon Indicating Mistakes to Avoid in This Math Topic

Incorrect Conversion into Decimal Number System

Green Checkmark Icon Indicating Correct Solutions in This Math Topic

 Whenever we convert a particular number system to decimal, we should remember to multiply the number’s digits by the decreasing power of its base. After the multiplication process, we should also remember to add up the products to get the correct decimal form. The conversion of a hexadecimal number to a decimal number is shown below:  

 

(18)16 = (1 × 161) + (8 × 160)

           = (1 × 16) + (8 × 1)

           = 16 + 8 

           = 24

Thus, (18)16 = (24)10

arrow-right
Max from BrightChamps Saying "Hey"

Solved Examples of Decimal Number System

Ray, the Character from BrightChamps Explaining Math Concepts
Max, the Girl Character from BrightChamps

Problem 1

Convert the binary number (1010)₂ to a decimal number.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"

(10)10

Explanation

Here, we must multiply each digit of the binary number by the decreasing power of 2, starting from the rightmost digit. The given binary number is  (1010)2 

(1010)2  =  (1 × 23) + (0 × 22) + (1 × 21) + (0 × 20
 
Now we can calculate the individual terms: 
           = (1 × 8) + (0 × 4) + (1 × 2) + (0 × 1) 

Then, add the results together to get the decimal number. 
             = 8 + 0 + 2 + 0
             = 10

 

Thus, (1010)2 = (10)10

Max from BrightChamps Praising Clear Math Explanations
Max, the Girl Character from BrightChamps

Problem 2

Convert (67)₈ to a decimal number.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"

(55)10

Explanation

We multiply each digit of the octal number (67)8 by the decreasing power of 8, beginning at the rightmost digit. After that, we add the products to convert an octal number to a decimal number.

 

The given number is (67)8.

(67)8 = (6 × 81) + (7 × 80)

         = (6 × 8) + (7 × 1) 

 

Now multiply the values:

       = 48 + 7 

       = 55

Thus, (67)8 = (55)10

Max from BrightChamps Praising Clear Math Explanations
Max, the Girl Character from BrightChamps

Problem 3

Convert (2B)₁₆ to a decimal number.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"

(43)10

Explanation

The given hexadecimal number is (2B)16.

 (2B)16 = (2 × 161) + (B × 160)

 

In the hexadecimal number system, B is equal to 11. 
           = (2 × 161) + (11 × 160)
           = (2 × 16) + (11 × 1)

 

Now we can multiply the values:
           = 32 + 11
           = 43 

 

Therefore, (2B)16 = (43)10

Max from BrightChamps Praising Clear Math Explanations
Max, the Girl Character from BrightChamps

Problem 4

Convert (12)_10 to a binary number.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"

(1100)2

Explanation

The given number is (12)10. To convert a decimal number to binary, we will divide each digit by 2 and list the numbers obtained as remainders. 

 

Divide 12 by 2:
      12 ÷ 2 = 6    Remainder = 0

 

Divide 6 by 2:
     6 ÷ 2 = 3   Remainder = 0

 

Divide 3 by 2:
     3 ÷ 2 = 1    Remainder = 1 

 

Divide 1 by 2:
     1 ÷ 2 = 0    Remainder = 1 

 

Now, we can write the remainder from bottom to top:
   (12)10 = (1100)2

Max from BrightChamps Praising Clear Math Explanations
Max, the Girl Character from BrightChamps

Problem 5

Convert (18)_10 to an octal number.

Ray, the Boy Character from BrightChamps Saying "Let’s Begin"

(22)

Explanation

Here, the given number is (18)10. To convert a decimal number to an octal number, we divide the decimal number by 8, which is the base of the octal number system. We then note the quotients and remainders, continuing the division until the quotient becomes 0. 

 

Divide 18 by 8:
    18 ÷ 8 =  2 (Quotient)  Remainder = 2

 

Divide the quotient 2 by 8:
     2 ÷ 8 = 0 (Quotient)    Remainder = 2

 

Write the remainder from bottom to top: 
     (18)10 = (22)8 

Max from BrightChamps Praising Clear Math Explanations
Ray Thinking Deeply About Math Problems

FAQs of Decimal Number System

1.What do you mean by the decimal number system?

Math FAQ Answers Dropdown Arrow

2.List the four types of number systems.

Math FAQ Answers Dropdown Arrow

3.How can a decimal number be converted to a binary number?

Math FAQ Answers Dropdown Arrow

4.How can an octal number be converted to a decimal number?

Math FAQ Answers Dropdown Arrow

5.How can a hexadecimal number be converted to a decimal number?

Math FAQ Answers Dropdown Arrow

6.How can children in United Kingdom use numbers in everyday life to understand Decimal Number System?

Math FAQ Answers Dropdown Arrow

7.What are some fun ways kids in United Kingdom can practice Decimal Number System with numbers?

Math FAQ Answers Dropdown Arrow

8.What role do numbers and Decimal Number System play in helping children in United Kingdom develop problem-solving skills?

Math FAQ Answers Dropdown Arrow

9.How can families in United Kingdom create number-rich environments to improve Decimal Number System skills?

Math FAQ Answers Dropdown Arrow
Math Teacher Background Image
Math Teacher Image

Hiralee Lalitkumar Makwana

About the Author

Hiralee Lalitkumar Makwana has almost two years of teaching experience. She is a number ninja as she loves numbers. Her interest in numbers can be seen in the way she cracks math puzzles and hidden patterns.

Max, the Girl Character from BrightChamps

Fun Fact

: She loves to read number jokes and games.

INDONESIA - Axa Tower 45th floor, JL prof. Dr Satrio Kav. 18, Kel. Karet Kuningan, Kec. Setiabudi, Kota Adm. Jakarta Selatan, Prov. DKI Jakarta
INDIA - H.No. 8-2-699/1, SyNo. 346, Rd No. 12, Banjara Hills, Hyderabad, Telangana - 500034
SINGAPORE - 60 Paya Lebar Road #05-16, Paya Lebar Square, Singapore (409051)
USA - 251, Little Falls Drive, Wilmington, Delaware 19808
VIETNAM (Office 1) - Hung Vuong Building, 670 Ba Thang Hai, ward 14, district 10, Ho Chi Minh City
VIETNAM (Office 2) - 143 Nguyễn Thị Thập, Khu đô thị Him Lam, Quận 7, Thành phố Hồ Chí Minh 700000, Vietnam
Dubai - BrightChamps, 8W building 5th Floor, DAFZ, Dubai, United Arab Emirates
UK - Ground floor, Redwood House, Brotherswood Court, Almondsbury Business Park, Bristol, BS32 4QW, United Kingdom