aom what you reckon to the binary system used in all computers
The base-10 number system or decimal number system is the most popular system used by humans throughout the world.
But, computers work internally with only two symbols, because of the straightforward implementation in digital electronic circuitry using logic gates.
Thus, the base-2 number system or Binary Number System is the basis for digital computers.
It is used to perform integer arithmetic in almost all digital computers.
The two base symbols or digits used in Binary number system are 0 (called zero) and 1 (called one).
We are already familiar with these symbols or digits in decimal number system.
Let us learn how to write numbers using the binary number system.
This system is analogous to the decimal number system in following the place value rule.
There, value of the place becomes ten times, as we move one place to the left, and here it becomes two times.
Place value rules in Binary number System :
The value of the right extreme place is one (1) or unity.
Value of the place increases as it moves to the left.
Value of the place becomes two times, as we move one place to the left.
So, the value of the place second from right is two times one and is equal to two.
The value of the place third from right is two times two and is equal to four.
The value of the place, fourth from right is two times four and is equal to eight.
The value of the place, fifth from right is two times eight and is equal to sixteen.
Thus, the next place values are thirty two, sixty four, one hundred twenty eight and so on.
I Conversion of base-two numerals into base-ten numerals :
The following examples will make the process clear.
Example I(1) :
Find the value of the binary numeral 1001, in the Decimal number system.
Solution :
In the given Binary Numeral,
units' place (Extreme right place) has 1.
Twos' place (Second place from right) has 0.
Fours' place (Third place from right) has 0.
Eights' place (Fourth place from right) has 1.
The value of the given binary numeral (1001) in Decimal Number System
= 1 ones + 0 twos + 0 fours + 1 eights
= 1 + 0 + 0 + 8 = 9. Ans.
Example I(2) :
Write the binary numeral 10010, in the Decimal number system.
Solution :
Binary Digit : 0 1 0 0 1
Place Value : 1 2 4 8 16
The Binary numeral 10010, in Decimal Number System
= 0(1) + 1(2) + 0(4) + 0(8) + 1(16)
= 0 + 2 + 0 + 0 + 16
= 18. Ans.
Example I(3) :
Write the binary numeral 1110011, in the Decimal number system.
Solution :
Binary Digit : 1 1 0 0 1 1 1
Place Value : 1 2 4 8 16 32 64
The Binary numeral 1110011, in Decimal Number System
= 1(1) + 1(2) + 0(4) + 0(8) + 1(16) + 1(32) + 1(64)
= 1 + 2 + 0 + 0 + 16 + 32 + 64
= 115. Ans.
Your opinion will as always be noted :bigsmile: