What is a Number System of Computer and Its Types

What is a Number System of Computer

Today we will tell you about the number system of computers and knowing how many types they are, then let’s start.

The number system is used to display information given by the user instructions. Whenever we write any letter or word on a personal computer, it converts it into numbers because the computer system can understand only numbers.

number system of computer

Digital computers convert all types of data and information into binary numbers. Eg:- Audio, Video, Graphics, and Numbers, etc.

There are Four Types of the Number system in computers:-

  • Binary Number System
  • Decimal Number System
  • Octal Number System
  • Hexadecimal Number System
Binary Number System:-

As we know that the computer is able to read numbers only, so digital computers represent all their data in binary numbers system. In the binary number are used only two digits (0 and 1) and its base or radix is ​​2. Because it has only two digits.

For example- 110110 is a binary number because only two (0 and 1) digits are used in it, 101001.1101 is also a binary number. In this, the point (.) after 101001 is called the binary point.

Decimal Number System:-

We use these decimal number systems every day in our daily life. In which the digits 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 are used to represent any number systems.

The base or radix of this decimal number system is 10. Radix is ​​the number of quantity digits used in a number system.
Each digit of each number written in the decimal number system has its own place value (weight). It is also called the multiplying factor Multiples are thousands, hundreds, tens and units, etc.

For example- 6262.67 can be represented as follows.

(6262.67)10 = 6*103+2*102+6*101+2*100+6*10-1+6*10-2

Based on the given example. 6 multiplied by 103, 2 multiplied by 102, 6 multiplied by 101, and 2 multiplied by 100, Similarly, in its decimal part 6 has been multiplied by 1/101  i.e. 10-1 and 7 by 1/102  i.e. 10-2.

Octal Number System:-

Like all these number systems, there is another number system called octal number. They also have some numbers of their own like in the octal number system only 8 digits are from 0 to 7.

These 8 digits are 0, 1, 2, 3, 4, 5, 6, and 7. Similarly, the base or radix of their number system is 8.

Hexadecimal Number System:-

This number system is also similar. Hexadecimal numbers have 10 digits and 6 alphabet letters;- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.

In this, 10 represented by A, 11 represented by B, 12 represented by C, 13 represented by D. 14 is represented by E, and 15 is represented by F. Its base or radix is 16 because it has 16 alphanumeric values.

Number System Relationship

Binary NumberDecimal NumberOctal NumberHexadecimal Number
0000000
0001111
0010222
0011333
0100444
0101555
0110666
0111777
10008108
10019119
10101012A
10111113B
11001214C
11011315D
11101416E
11111517F

We can change the number system in many ways:-

  • Binary to Decimal Conversion:-

For Example- 1010 is a binary number converted to a Decimal number.

1010 – 1*23 + 0*22 + 1*21 + 0*20

8 + 0 +2 + 0

Sum = 10 is Decimal number

  • Decimal to Binary Conversuion:-

For Example- Convert the decimal number 1510 to binary.

 We will start dividing the given number (15) repeatedly by 2 until we get the quotient as 0. We will note the remainders in order.

STEP 1- dividing the given number (1510) repeatedly by 2 until we get the quotient as 0. We will note the remainders in order.

15 ÷ 2 = 7 (Remainder 1)

7 ÷ 2 = 3 (Remainder 1)

3 ÷ 2 = 1 (Remainder 1)

1 ÷ 2 = 0 (Remaindr 1)

STEP- write the reainders reverse order 1111

1510 is decimal number = 1111 is binary number

Conclusion:-

We have tried our best to explain what is a number system of computer blogs, I hope you have understood this blog. If you liked the blog, then share it with your friends too.

Read Also:-

Leave a Comment