A number system is a way of writing and understanding numbers. From basic mathematics to advanced data processing, each number we use is based on a number system. Common examples include decimal, binary, octal and hexadecimal, each with its own base and purpose. In this chapter you will learn about the number, the types of number systems , the role of place value in how to convert between them and represent numbers - an important concept for both everyday mathematics and computer science.
A number system is a way of writing and representing numbers using a set of symbols or digits. It is a method of expressing numbers by using a smooth structure based on value and base.
In mathematics, many systems allow us to perform operations such as addition, subtraction, multiplication and division. The total count of digits used indicates the number system’s base, & the value of each digit depends on its position, known as place value.
The most common number system we use every day is the decimal number system, which is an original -10 system. It uses ten digits: 0 to 9. For example, in number 345, the points are '5' instead of equipment, '4' and '3' in hundreds of places, multiplied by the powers of 10.
● It is the basis for all types of calculations in mathematics and computers.
● Data helps understand representation, measurement and digital logic.
● It is necessary to learn conversion from binary to decimal or octal to hexadecimal.
Whether it is calculating bills, measuring distance, making computer programs or decoding digital signals, the number systems are everywhere in daily life. For example, computers use a binary number system to store and process data, while programmers often use hexadecimal values in coding.
Mathematics and computer science contain four main types of number systems commonly used. Each number system has its base (radix) and a set of symbols or digits used to represent numbers. Understanding these helps students perform conversions, solve real-world problems & how they store your computer stores and processes data.
The Decimal Number System is the most widely used in everyday life. It is a basic-10 system, which means it uses 10 digits: 0 through 9.
● Each digit has a place value depending on the powers of 10.
● For example, the number 472 is calculated as follows: 4 × 100+7 × 10+2 × 1 = 472
Used in:
● Counter
● Currency
● Measurements
The binary number system is used in all digital devices such as computers, calculators and microprocessors. This is a base-2 system, using only two digits: 0 and 1.
● Each digit (called a bit) represents an on/off or correct/incorrect position.
● Example: Binary number 1011 is equal to 1 × 8 + 0 × 4 + 1 × 2 + 1 × 1 = 11
Used in:
● Computer programming
● Digital electronics
● data storage
The octal number system uses eight digits: 0 to 7. It is a base-8 system. The octal numbers are often used as shorthand for binary values because an octal digit represents exactly three binary digits.
● Example: October 25 = 2 × 8 + 5 = 21 in decimal.
Used in:
● Programming language
● Microcontroller system
● Low binary coding
The hexadecimal number system uses 16 symbols: 0–9 and a-f, where a = 10, b = 11, ..., f = 15. It is a base-16 system and is widely used in computer programming and Memory addressing
● Example: Hex 2F
2 × 16 + 15 =47 in decimal.
Used in :
● Web color coding (e.g., #FFFFFF)
● Memory addresses
● Digital systems
Understand how to convert between number systems in both mathematics and computer science. These conversions help students understand how different grounds are related to each other and are widely used in programming, data presentation & digital electronics. There are step-by-step methods to convert numbers from one system to another, complete with examples for better understanding.
Follow these steps to convert a number from the decimal number system (base-10) to binary number system (base-2):
Steps:
1. Divide the decimal number by 2.
2. Record the Remainder.
3. Divide the quotient again by 2.
4. Repeat the process until the quotient is 0.
5. Read the remainders in reverse order (bottom to top).
Example:
Convert 25 to Binary: Copy code
● 25 ÷ 2 = 12 remainder 1
● 12 ÷ 2 = 6 remainder 0
● 6 ÷ 2 = 3 remainder 0
● 3 ÷ 2 = 1 remainder 1
● 1 ÷ 2 = 0 remainder 1
Reading remainders from bottom to top: 11001
Decimal 25 = Binary 11001
To convert from binary (base-2) to decimal (base-10), multiply each piece 2 by 2 in position, starting from right to left.
Steps:
1. Write a binary number.
2. Multiply each digit by 2ⁿ, where N is the correct position index (starts at 0). 3. Add all the results.
Example:
Convert 1011 to decimal: (1 × 2³) + (0 × 2²) + (1 × 2¹) + (1 × 2⁰) = 8 + 0 + 2 + 1 = 11
The octal number system (base-8) uses digits from 0 to 7. To convert it to decimal:
Steps:
1. Write the octal number.
2. Multiply each digit by 8ⁿ, where N is from right to left.
3. Add products.
Example:
Convert 157 (Octal) to Decimal: (1 × 8²) + (5 × 8¹) + (7 × 8⁰) = 64 + 40 + 7 = 111
Hexadecimal number system (base-16) includes digits 0-9 & letters A-F (where A=10 to F=15). To convert to decimal:
Steps:
1. Replace each letter with its decimal equivalent.
2. Multiply each digit by 16ⁿ
3. Sum all the results.
Examples:
Convert 2F to decimal : (2 × 16¹) + (15 × 16⁰) = 32 + 15 = 47
From→To |
Method Used |
Example |
Result |
Decimal→Binary |
Divide by 2, record remainders |
25 → ? |
11001 |
Binary→Decimal |
Multiply by 2ⁿ from the right |
1011 → ? |
11 |
Octal→Decimal |
Multiply by 8ⁿ from the right |
157 → ? |
111 |
Hex → Decimal |
Multiply by 16ⁿ from right |
2F → ? |
47 |
These conversion techniques between number systems not only improve calculation skills but also lay the foundation of digital data processing, making them important for students to understand both basic and advanced math and technology concepts.
Understanding how numbers are represented and interpreted is a basic concept in mathematics. The terms place value and base play a central role in the number system, which helps us effectively read, write and understand both in daily life and mathematical operations.
These two components - place value and base-decimal (base-10), binary (base-2) & more as the basis for positive number systems. Let's break down what each is and how they work together to give value to the digits of a number.
It is a method of representing or writing positional notation numbers where the location of each digit in a number determines its actual value. In this system, the same digit can represent different values, where it is shown in the number.
Key concept:
In number 753, the number 7 does not represent only 7 - it represents 700, as it is "hundreds" in place.
Examples in Base-10 (decimal system):
Let's take number 4,382:
Digit |
Place Value |
Calculation |
Value |
4 |
Thousands |
4 × 1,000 |
4,000 |
3 |
Hundreds |
3 × 100 |
300 |
8 |
Tens |
8 × 10 |
80 |
2 |
Ones |
2 × 1 |
2 |
Total Value = |
4,382 |
As shown, the value of each digit = digit × place value. This system is called a positional number system.
The nice thing about status signs is that it is not limited to the base-10. It works in any base system, where the base determines the value of each location.
For example:
● In binary (base-2) the digits are multiplied by the powers of 2.
● In hexadecimal (base-16), the digits are multiplied by the powers of 16.
A number defines the base of a number system (also known as Radix):
● How many digits are used in the system?
● The multipliers or powers that determine the value of each position.
A base is the number of unique digits (including zero) that a positional number system uses.
● Base-10 (Decimal): Digits used are 0–9
● Base-2 (Binary): Digits used are 0 and 1
● Base-8 (Octal): Digits used are 0 to 7
● Base-16 (Hexadecimal): Digits used are 0 to 9 and A to F (where A=10, B=11, … F=15)
In any positional number, the value of each digit is calculated as: Digit × (Base ^ Position)
Where:
● The position is counted from right to left, starting from 0.
● ^ denotes exponentiation (power).
Example: Decimal Number 327 in Base 10
Using powers of 10: 327 = (3 × 10²) + (2 × 10¹) + (7 × 10⁰)
= (3 × 100) + (2 × 10) + (7 × 1)
= 300 + 20 + 7
= 327
Example: Binary Number 1011 in Base 2
Using powers of 2: 1011 = (1 × 2³) + (0 × 2²) + (1 × 2¹) + (1 × 2⁰)
= (1 × 8) + (0 × 4) + (1 × 2) + (1 × 1)
= 8 + 0 + 2 + 1
= 11
Change the entire interpretation of the same digit as you can see, change the base. This is why it is important to understand the base system in areas such as computer science, electronics and mathematics.
Base System |
Digits Used |
Place Value Examples (Right to Left) |
Base-10 |
0, 1, 2, ..., 9 |
10⁰ (1), 10¹ (10), 10² (100), 10³ (1000)... |
Base-2 |
0, 1 |
2⁰ (1), 2¹ (2), 2² (4), 2³ (8)... |
Base-8 |
0–7 |
8⁰ (1), 8¹ (8), 8² (64)... |
Base-16 |
0–9, A–F |
16⁰ (1), 16¹ (16), 16² (256)... |
Understanding the place value and base system strengthens students:
Understanding the number system is more than just an educational practice - it plays an important role in our daily lives. From simple arithmetic to complex data processing, the number of systems forms the basis for how we interpret, use and communicate quantitative data. Let's see how these systems affect different aspects of modern life.
The binary number system (base-2) is the main language of all modern computers. Each digital device, from smartphones to advanced servers, processes data using binary code. These systems use combinations of 0s and 1s to represent instructions and data, making the number system important in the computer for their operation.
Understanding the number systems allows students to understand basic data processing principles and lays the foundation for subjects such as computer science, coding, and digital electronics.
In mathematics, the number system provides structure and clarity. Students use the decimal number system (base-10) from the beginning, and gradually detect binary, octal, and hexadecimal systems as they advance.
Mastering these systems helps increase logical reasoning, problem-solving capacity, and computational thinking skills essential for academic success and real-world application.
To develop a strong understanding of number systems, it's important to solve a variety of examples & practice problems.
The study of number systems is essential for both mathematical understanding and practical applications in fields like computer science, electronics, and data processing. By mastering the four primary number systems : Decimal (Base-10), Binary (Base-2), Octal (Base-8), and Hexadecimal (Base-16), you can build a strong foundation in converting between these systems, understanding digital logic, and solving real-world problems efficiently.
The four primary types of number systems are binary (base-2), octal (base-8), decimal (base-10) & hexadecimal (base-16). These systems are fundamental in computing and other fields for representing & manipulating numbers.
Binary (Base-2):
Octal (Base-8):
Decimal (Base-10):
Hexadecimal (Base-16):
Quinary (base 5 or pental) is a numeral system with five as the base. A possible origin of a quinary system is that there are five digits on either hand.
The 7-number system, also known as the septenary or base-7 system, is a positional notation system where each digit's place value is a power of 7. It uses the digits 0, 1, 2, 3, 4, 5, & 6.
Here's a breakdown:
Yes, 16 is an even number because it is completely divisible by 2. This can be checked by observing the last digit of 16, which is 6. If the last digit of a number is 0, 2, 4, 6, or 8, it is an even number.
Hexadecimal numbers are commonly used in computer programming, memory addressing, colour coding in web design (e.g., #FF5733) & digital circuits.
Discover a world of math learning and build strong problem-solving skills with Orchids The International School!