Decimal Pasrt Binary Decimal Pasrt Binary Easy Method

Binary to Decimal

Binary to decimal conversion is done to convert a number given in the binary number system to its equivalent value in the decimal number system. A number system is a format to represent numbers in a certain way. The binary number system is used in computers and electronic systems to represent data and it consists of only two digits which are 0 and 1. The decimal number system is the most commonly used number system around the world which is easily understandable to people. Binary to decimal conversion can be done by two methods - the positional notation method and the doubling method. Let us learn how to convert binary to decimal using some binary to decimal conversion examples.

1. What is Binary to Decimal Conversion?
2. Binary to Decimal Conversion Methods
3. Binary to Decimal Formula
4. Binary to Decimal Conversion Chart
5. Binary to Decimal Converter
6. FAQs on Binary to Decimal

What is Binary to Decimal Conversion?

Binary to decimal conversion is done to represent a number given in Binary Number System to its equivalent in the Decimal Number System. A number system is very essential to represent numbers. Every number system has a base and the base of a number system is determined by the total number of digits used in the number system. For example, the binary number system has a base of 2 because it has only two digits to represent any number. Similarly, the decimal number system has a base of 10, as it has 10 digits to represent a number.

The conversion of numbers from binary to decimal is important as it helps to read numbers that are represented as a set of 0s and 1s. Let us learn about the different binary to decimal conversion methods and examples.

Binary to Decimal Conversion Methods

Binary to decimal conversion is done to help read large binary numbers easily in a form that humans can understand. There are two methods to convert a number from binary to decimal number system.

  • Positional Notation Method
  • Doubling Method

Let us understand these binary to decimal conversion methods in detail.

Binary to Decimal Conversion Using Positional Notation Method

The positional notation method is one in which the value of a digit in a number is determined by a weight based on its position. This is achieved by multiplying each digit by the base (2) raised to the respective power depending upon the position of that digit in the number. The sum of all these values obtained for each digit gives the equivalent value of the given binary number in the decimal system. Let us understand this with the help of examples.

Example: Convert the binary number 1011012 to a decimal number.

Solution: Observe the following steps to understand the binary to decimal conversion. In any binary number, the rightmost digit is called the 'Least Significant Bit' (LSB) and the left-most digit is called the 'Most Significant Bit' (MSB). For a binary number with 'n' digits, the least significant bit has a weight of 20 and the most significant bit has a weight of 2n-1.

  • Step 1: List out the powers of 2 for all the digits starting from the rightmost position. The first power would be 20 and as we move on it will be 21, 22, 23, 24, 25,... In the given example, there are 6 digits, therefore, starting from the rightmost digit, the weight of each position from the right is 20,21,22,23,24,25.

Binary to Decimal - Power of base-2 with Exponents

  • Step 2: Now multiply each digit in the binary number starting from the right with its respective weight based on its position and evaluate the product. Observe the figure shown below to relate to the step. Finally, sum up all the products obtained for all the digits in the binary number.

Binary to Decimal Conversion example Using Positional Notation Method

  • Step 3: Now, express the binary number as a decimal number: 1011012 = 4510

Binary to Decimal Conversion Using Doubling Method

As the name suggests, the process of doubling or multiplying by 2 is done to convert binary to decimal. Let us use the same example for converting the binary number 1011012 to decimal.

Example: Convert the binary number 1011012 to decimal using doubling method.

Solution: Observe the following steps given below to understand the binary to decimal conversion using the doubling method.

  • Step 1: Write the binary number and start from the left-most digit. Double the previous number and add the current digit. Since we are starting from the left-most digit and there is no previous digit to the left-most digit, we consider the double of the previous digit as 0. For example, in 1011012, the left-most digit is '1'. The double of the previous number is 0. Therefore, we get ((0 × 2) + 1) which is 1.
  • Step 2: Continue the same process for the next digit also. The second digit from the left is 0. Now, double the previous digit and add it with the current digit. Therefore, we get, [(1 × 2) + 0], which is 2.
  • Step 3: Continue the same step in sequence for all the digits. The sum that is achieved in the last step is the actual decimal value. Therefore, the result of converting the binary number 1011012 to a decimal using the doubling method is 4510

Observe the figure given below to relate to the steps and understand how the doubling method works.

Binary to Decimal Conversion example Using Doubling Method

Binary to Decimal Formula

In the previous section, we understood the methods and their stepwise process to convert a binary to a decimal. Let us learn the general formula for converting a binary number to a decimal number now. Considering dn to be the digits of a binary number consisting of 'n' digits, the formula to convert binary to decimal is given as,

Binary to Decimal Conversion Formula:

(Decimal Number)10 = (d0 × 20 )+ (d1 × 21 )+ (d2 × 22 )+ ..... + dn-1 × 2n-1)

where, d0, d1, d2 are the individual digits of the binary number starting from the right-most position.

Let us see the application of the above binary to decimal formula and learn how to convert binary to decimal using the following example.

Example: Convert 11102, from binary to decimal using the binary to decimal formula.

Solution: We start doing the conversion from the rightmost digit, which is '0' here.
(Decimal Number)10 = (d0 × 20) + (d1 × 21 )+ (d2 × 22 )+ ..... (dn-1 × 2n-1),
= (0 × 20) + (1 × 21) + (1 × 22) + (1 × 23)

= (0 × 20) + (1 × 21) + (1 × 22) + (1 × 23)
= 0 + 2 + 4 + 8
= 14
Therefore, 11102 = 1410

Binary to Decimal Conversion Chart

The binary to decimal conversion of the first 20 decimal numbers is displayed in the chart given below.

Binary Decimal
0 0
1 1
10 2
11 3
100 4
101 5
110 6
111 7
1000 8
1001 9
1010 10
1011 11
1100 12
1101 13
1110 14
1111 15
10000 16
10001 17
10010 18
10011 19
10100 20

Binary to Decimal Converter

In the above sections, we have learned different methods to convert binary to decimal. Check out this binary to decimal converter to convert a number given in binary number system to its equivalent in decimal number system - Binary to Decimal Calculator

☛ Related Articles

  • Decimal to Binary
  • Octal to Binary
  • Hexadecimal to Binary
  • Decimal to Binary Calculator

Have questions on basic mathematical concepts?

Become a problem-solving champ using logic, not rules. Learn the why behind math with our Cuemath's certified experts.

Book a Free Trial Class

FAQs on Binary to Decimal

What is Binary to Decimal Conversion?

The process of converting a binary number to a decimal number is called binary to decimal conversion. For example, 1002 in binary when converted to a decimal number is 410. Binary numbers are composed of only 0 and 1, whereas, decimal numbers are composed of digits from 0 to 9. The binary number system is also called the base-2 number system and the decimal number system is known as the base -10 number system.

How to Convert Binary to Decimal?

A number given in the binary number system can be converted to its equivalent in the decimal number system by either the position notation method or by using the doubling method.

What is the Value of 10102 from Binary to Decimal?

The decimal value of 10102 is number 10. To get this, we multiply each digit in the binary number by 2 raised to the power depending upon the position of the digit in the number, starting from the rightmost digit and moving towards the left. The rightmost digit is multiplied by 20 and the next digit by 21 and so on. Finally, we add up all the values and get the decimal value which is 10.

How to Convert a Number From Binary to Decimal Using the Positional Notation Method?

To convert a number from binary to decimal using the positional notation method, we multiply each digit of the binary number with its base, (which is 2), raised to the power based on its position in the binary number. The rightmost digit of the binary digit carries a position of 0, and as we move on to the left, it increases by 1. Finally, we sum up all the values to get the decimal equivalent. For example, to convert 1002 from binary to decimal using the positional notation method, the conversion step is as follows. 1002 = (0 × 20) + (0 × 21) + (1 × 22), which is equal to 0 + 0 + 4. Therefore, 1002 = 410.

How to Convert a Number From Binary to Decimal Using the Doubling Method?

In the doubling method, we double every previous digit and add it to the current digit of the binary number, starting from the left-most digit and moving towards the right. For example, to convert 1102 from binary to decimal, we use the steps given below. Here, since we start from the left-most digit, there is no previous number to it. Therefore, we consider the doubled value of the previous number for the left-most digit to be 0. The sum that is obtained in the final step is the decimal equivalent of the binary number.

  • (0 × 2) + 1 = 1
  • (1 × 2) + 1 = 3
  • (3 × 2) + 0 = 6
  • Therefore, 1102 = 610

What is the Formula to Convert Binary to Decimal?

The formula to convert a binary number to decimal is as follows. Considering dn to be the digits of a binary number consisting of 'n' digits, Decimal Number10 = (d0 × 20) + (d1 × 21 )+ (d2 × 22 )+ ..... (dn × 2n), where d0 , d1, d2 are individual digits of the binary number starting from the rightmost position.

Can we Convert 1111.12 from Binary to Decimal?

Yes, it is possible to convert 1111.12 from binary to decimal. To do this, we first convert the integer part to decimal or a base-10 number. Therefore, the decimal equivalent of 11112 = (1 × 20) + (1 × 21) + (1 × 22) + (1 × 23) , which is equal to 1 + 2 + 4 + 8, which is 15. Now, we convert the fractional part which is 0.1 to a decimal or a base-10 number. Since it is a fractional part, the decimal equivalent of 0.1 = 1 × 2-1, which is equal to 0.5. Now, we sum up both the values together, which is 15 + 0.5, or 15.5. Therefore, the binary to decimal conversion of 1111.12 is 15.510

List out the Binary to Decimal Values of the First Ten Decimal Numbers.

The list given below depicts the binary and the corresponding decimal equivalents of the first ten decimal numbers.

02 = 010
12 = 110
102 = 210
112 = 310
1002 = 410
1012 = 510
1102 = 610
1112 = 710
10002 = 810
10012 = 910

Does Binary to Decimal and Binary to Hexadecimal Conversions Result in the Same Answer?

No, binary to decimal and Binary to Hexadecimal conversions result in different answers because decimal and hexadecimal are different number systems. The decimal number system uses digits from 0 to 9, while the hexadecimal number system uses 16 digits for representing a number, using numbers from 0 - 9, followed by A, B, C, D, E, F for the numbers from 10 to 15.

How to Convert 1110012 from Binary to Decimal Number System Using Conversion Formula?

In order to convert 1110012 from binary to decimal let us use the Binary to Decimal Formula, (d0 × 20) + (d1 × 21) + (d2 × 22) + (d3 × 23) .....⇒1110012 = (1 × 20) + (0 × 21) + (0 × 22) + (1 × 23) + (1 × 24) + (1 × 25) = 5710

What is 10101 Binary to Decimal?

10101 is equal to 21 when it is converted from binary to decimal. This can be done using the formula, (d0 × 20) + (d1 × 21) + (d2 × 22) + (d3 × 23) + (d4 × 24) .....⇒ 101012 = (1 × 20) + (0 × 21) + (1 × 22) + (0 × 23) + (1 × 24) = 2110

What is 1111 Binary to Decimal?

1111 is equal to 15 when it is converted from binary to decimal. This can be done using the formula, (d0 × 20) + (d1 × 21) + (d2 × 22) + (d3 × 23) + (d4 × 24) .....⇒ 11112 = (1 × 20) + (1 × 21) + (1 × 22) + (1 × 23) = 1 + 2 + 4 + 8 = 1510

hilltiousbactine.blogspot.com

Source: https://www.cuemath.com/numbers/binary-to-decimal/

0 Response to "Decimal Pasrt Binary Decimal Pasrt Binary Easy Method"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel