Skip to main content
Skip to main content

What is a Number System?

Visual representation of different number systems showing digits and symbols
Different number systems used around the world and in computing

A number system is a way to represent numbers using symbols or digits. Think of it as a special language for counting and calculating!

Different number systems use different bases. The base tells us how many digits are available in that system. Our everyday number system is base 10 (decimal), which means it uses 10 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

Decimal Number System

Place value chart showing ones, tens, hundreds places with examples
Decimal system place values showing how each position represents a power of 10

The decimal system is the number system we use every day. It's called base-10 because it uses 10 digits (0-9) and each place value represents a power of 10.

In the decimal system, the value of a digit depends on its position. For example, in the number 365:

1

Ones Place

The digit 5 means 5 ones (5 × 10⁰)

2

Tens Place

The digit 6 means 6 tens (6 × 10¹)

3

Hundreds Place

The digit 3 means 3 hundreds (3 × 10²)

So, 365 = (3 × 100) + (6 × 10) + (5 × 1). This place value system makes it easy to work with large numbers and perform calculations.

Binary Number System

Computer circuitry showing binary code with 0s and 1s flowing through
Binary code is the language computers use to process information

The binary system is a base-2 number system that uses only two digits: 0 and 1. Computers use this system because electronic circuits can easily represent these two states (on/off, true/false).

In binary, each place value represents a power of 2. Let's look at how the binary number 1011 converts to decimal:

1

Rightmost Digit

1 × 2⁰ = 1 × 1 = 1

2

Next Digit

1 × 2¹ = 1 × 2 = 2

3

Next Digit

0 × 2² = 0 × 4 = 0

4

Leftmost Digit

1 × 2³ = 1 × 8 = 8

Adding these values together: 8 + 0 + 2 + 1 = 11. So, the binary number 1011 equals 11 in decimal.

Octal Number System

Chart showing octal digits 0-7 and their binary equivalents
Octal system uses digits 0-7 and is closely related to binary

The octal system is a base-8 number system that uses digits from 0 to 7. It was commonly used in early computing because it's easy to convert between octal and binary.

Each place value in octal represents a power of 8. For example, the octal number 247 converts to decimal as:

1

Ones Place

7 × 8⁰ = 7 × 1 = 7

2

Eights Place

4 × 8¹ = 4 × 8 = 32

3

Sixty-fours Place

2 × 8² = 2 × 64 = 128

Adding these values: 128 + 32 + 7 = 167. So, the octal number 247 equals 167 in decimal.

Hexadecimal Number System

Color chart showing hexadecimal digits 0-9 and A-F with their decimal values
Hexadecimal system uses 16 symbols and is widely used in computing

The hexadecimal system is a base-16 number system that uses 16 symbols: digits 0-9 and letters A-F (where A=10, B=11, C=12, D=13, E=14, F=15). It's widely used in computer programming and digital design.

Each place value in hexadecimal represents a power of 16. For example, the hexadecimal number 2A3 converts to decimal as:

1

Ones Place

3 × 16⁰ = 3 × 1 = 3

2

Sixteens Place

A × 16¹ = 10 × 16 = 160

3

256s Place

2 × 16² = 2 × 256 = 512

Adding these values: 512 + 160 + 3 = 675. So, the hexadecimal number 2A3 equals 675 in decimal.

Number System Conversion

Flowchart showing conversion methods between different number systems
Methods for converting between different number systems

Converting between number systems might seem tricky, but it becomes easier with practice! Here are some basic conversion methods:

Decimal to Binary

Repeatedly divide by 2 and note remainders

Binary to Decimal

Multiply each digit by 2 raised to its position power

Binary to Hexadecimal

Group binary digits into sets of 4 and convert each group

Hexadecimal to Decimal

Multiply each digit by 16 raised to its position power

Let's try converting decimal 25 to binary:
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 the remainders from bottom to top: 11001. So, 25 in decimal is 11001 in binary.

Number System Quiz

Test your knowledge with this quiz! Answer all 5 questions to see how much you've learned about number systems.

1. Which number system do we use in our everyday lives?
2. How many digits does the binary system use?
3. Which number system is often used in computer programming and web design?
4. What is the decimal equivalent of the binary number 1010?
5. Which number system uses digits 0-7?

Frequently Asked Questions

Here are answers to some common questions about number systems:

Math Facts About Number Systems

Discover some fascinating facts about number systems and mathematics!

Decimal

Base-10
Digits: 0-9

Binary

Base-2
Digits: 0,1

Octal

Base-8
Digits: 0-7

Hexadecimal

Base-16
Digits: 0-9, A-F

Copyright © 2025 Workybooks. Made with ♥ in California.