Grade 9

Grade 9


Number Systems


In mathematics, a number system is a writing system for expressing numbers. It represents a useful way to count, measure, and label. There are different types of number systems and they are used depending upon the requirements. Let us understand in depth what number systems are, their types, and how they are used in mathematics.

Types of number systems

There are mainly four types of number systems:

  • Decimal Number System (Base 10)
  • Binary Number System (Base 2)
  • Octal number system (base 8)
  • Hexadecimal number system (base 16)

Decimal Number System (Base 10)

The decimal number system is the most commonly used number system. It is also known as the base 10 number system. It uses ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9. Each digit in a decimal number has a place value relative to its place in the number based on powers of 10.

Example:

The decimal number 345 can be expressed as:

345 = 3 × 10² + 4 × 10¹ + 5 × 10⁰

Binary Number System (Base 2)

The binary number system is mainly used in computing and electronics. It is known as the base 2 number system. It uses only two digits, 0 and 1. Each digit in a binary number represents a power of 2, starting from the rightmost digit.

Example:

The binary number 1011 can be expressed as:

1011 = 1 × 2³ + 0 × 2² + 1 × 2¹ + 1 × 2⁰
     = 8 + 0 + 2 + 1
     = 11 (decimal)
Binary: 1011 Decimals: 11

Octal number system (base 8)

The octal number system uses base 8 and includes the digits 0 to 7. It is often used in digital electronics because it can be easily converted to binary.

Example:

The octal number 375 can be expressed as:

375 = 3 × 8² + 7 × 8¹ + 5 × 8⁰
    = 3 × 64 + 7 × 8 + 5 × 1
    = 192 + 56 + 5
    = 253 (decimal)

Hexadecimal number system (base 16)

The hexadecimal number system, or base 16 number system, uses sixteen different symbols: 0-9 and A-F, where A represents 10, B is 11, and so on up to F which is 15. This system is used in computing as a more human-friendly representation of binary-coded values.

Example:

The hexadecimal number 1F4 can be expressed as:

1F4 = 1 × 16² + 15 × 16¹ + 4 × 16⁰
    = 1 × 256 + 15 × 16 + 4 × 1
    = 256 + 240 + 4
    = 500 (decimal)

Conversion between number systems

Converting numbers from one base to another may seem difficult at first, but it can get easier with practice. Below are some basic ways to convert between different number systems.

Decimal to binary conversion

To convert a decimal number to binary:

  • Divide the decimal number by 2.
  • Write the remainder (0 or 1).
  • Divide the quotient obtained by 2 and note down the remainder again.
  • Keep repeating the steps until you get the quotient 0.
  • A binary number is a sequence of remainders read in reverse order.

Example:

Convert 18 (decimal) to binary:

18 ÷ 2 = 9 remainder 0
9 ÷ 2 = 4 remainder 1
4 ÷ 2 = 2 remainder 0
2 ÷ 2 = 1 remainder 0
1 ÷ 2 = 0 remainder 1
Read in reverse order: 10010 (binary)
Decimals: 18 / 2 = 9 remainder 0 / 2 = 4 remainder 1 / 2 = 2 remainder 0 / 2 = 1 remainder 0 / 2 = 0 remainder 1

Binary to decimal conversion

To convert a binary number to decimal:

  • Write down the binary number.
  • Starting from the right, multiply each binary digit by 2 raised to the power of its position number.
  • Sum all the products to get the decimal value.

Example:

Convert 1101 (binary) to decimal:

1101 = 1 × 2³ + 1 × 2² + 0 × 2¹ + 1 × 2⁰
    = 8 + 4 + 0 + 1
    = 13 (decimal)

Further information

The conversion methods can also be applied to octal and hexadecimal systems using the same techniques but with base 8 for octal and base 16 for hexadecimal. These systems make working with binary numbers easier because they reduce the length of binary numbers that are difficult to read and work with.

Conclusion

Understanding number systems is fundamental in mathematics and computer science. Different bases serve specific purposes, such as simplifying calculations or making the representation of large binary numbers more feasible. Practice converting between these systems, and looking at numbers in different bases will become second nature.


Grade 9 → 1


U
username
0%
completed in Grade 9


Comments