Access free live classes and tests on the app
Download
+
Unacademy's Blog!
Login Join for Free
avtar
  • ProfileProfile
  • Settings Settings
  • Refer your friendsRefer your friends
  • Sign outSign out
  • Terms & conditions
  • •
  • Privacy policy
  • About
  • •
  • Careers
  • •
  • Blog

© 2023 Sorting Hat Technologies Pvt Ltd

[wp_login_wall media_id="448945" text_before_login="Download JEE Maths Formulas" text_after_login="Download JEE Maths Formulas"]

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
[wp_login_wall media_id="424566" text_before_login=" Download Previous Year Papers" text_after_login="Download Previous Year Papers"] combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee Predict your JEE Rank .
[wp_login_wall media_id="448945" text_before_login="Download JEE Maths Formulas" text_after_login="Download JEE Maths Formulas"]

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
[wp_login_wall media_id="424566" text_before_login=" Download Previous Year Papers" text_after_login="Download Previous Year Papers"] combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee Predict your JEE Rank .
JEE Main 2026 Preparation: Question Papers, Solutions, Mock Tests & Strategy Unacademy » JEE Study Material » Mathematics » Binary to decimal conversion
[wp_login_wall media_id="448945" text_before_login="Download JEE Maths Formulas" text_after_login="Download JEE Maths Formulas"]

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
[wp_login_wall media_id="424566" text_before_login=" Download Previous Year Papers" text_after_login="Download Previous Year Papers"] combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee Predict your JEE Rank .

Binary to decimal conversion

The binary to decimal conversion process involves converting a number in the binary number system to its decimal equivalent.

Table of Content
  •  

The simplest type of number system is binary, which employs only two digits of 0 and 1. (i.e. value of base 2). Because digital electronics only has two states (either 0 or 1), current computer engineers, networking and communication specialists, and other professions favor binary numbers.

The decimal number system, on the other hand, is the most widely used number system. Base 10 is made up of only ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

Every number system has a base, which is determined by the total number of digits in the system. The binary number system, for example, has a base of two since any number is represented by only two digits. Similarly, the decimal number system has a base of ten since each number is represented by ten digits.

The binary to decimal conversion is significant because it allows you to read numbers that are represented as a series of 0s and 1s.

Binary to decimal conversion logic

A program that converts a binary number to a decimal value. For instance, binary number 1111 has a decimal equivalent of 15.

Binary to Decimal Conversion Methods

The binary to decimal conversion is performed to make large binary values easier to interpret in a human-readable format. There are two ways to convert a binary number to a decimal value.

  1. Positional Notation Method
  2. Doubling Method

Positional Notation Method: The value of a digit in a number is defined by a weight based on its position in a number using the positional notation approach. This is accomplished by multiplying each digit by the base (2) increased to the appropriate power, which is determined by the digit’s location in the number. The total of all these values collected for each digit is the decimal equivalent of the provided binary number.

To understand the binary to decimal conversion, follow the steps below. Let’s use the binary number 

(101101)2 as an example. The ‘Least Significant Bit’ (LSB) is the rightmost digit in any binary number, whereas the ‘Most Significant Bit’ is the leftmost digit (MSB). The least significant bit in a binary number with ‘n’ digits has a weight of 20 and the most significant bit has a weight of 2n-1.

Doubling Method: The method of doubling or multiplying by two is used to convert binary to decimal, as the name implies. The method of doubling or multiplying by two is used to convert binary to decimal, as the name implies. To convert the binary number (101101)2   to decimal, we’ll apply the same example. 

(101101)2 as an example. The ‘Least Significant Bit’ (LSB) is the rightmost digit in any binary number, whereas the ‘Most Significant Bit’ is the leftmost digit (MSB). The least significant bit in a binary number with ‘n’ digits has a weight of 20 and the most significant bit has a weight of 2n-1.

Formula of Binary to Decimal Conversion

The formula to convert binary to decimal is provided as, where dn is the digits of a binary integer of ‘n‘ digits.

Binary to decimal converter circuit diagram

Binary to decimal converter to double-check the results of your manual calculations to convert a number supplied in binary to its decimal counterpart – Binary to Decimal Calculator

A 4-bit binary to decimal encoder’s logic diagram is shown here.

Example of Binary to Decimal Conversion

Let’s look at an example to better grasp the conversion. Let’s look at how to convert 11012 to a decimal number.

Starting from the LSB, 11012 = (1×23)+(1×22)+(0×21) + (1×20)

= (1× 8)+(1×4)+(0×2)+(1×1)

= 8+4+0+1

= 1310

Thus, the decimal representation of 1101 is 13.

Conclusion

We learned, Binary to decimal conversion refers to the process of converting a binary number to a decimal number and many strategies for converting binary to decimal in the preceding sections. Check out this binary to decimal converter to double-check the results of your manual calculations to convert a number supplied in binary to its decimal counterpart – Binary to Decimal Calculator

faq

Frequently asked questions

Get answers to the most common queries related to the JEE Examination Preparation.

What is the best way to convert binary to decimal?

Ans. A number expressed in the binary number system can be translated to its decimal counterpart using either the po...Read full

What exactly is binary?

Ans. Binary is a numerical system in which only the numbers 1 and 0 are used. The decimal number system, which uses ...Read full

What is the decimal number system and how does it work?

Ans. In mathematics, the decimal system,is a positional numeral system that uses 10 as the base and requires 10 diff...Read full

Write down the steps involved in converting binary to decimal.

Ans.  Step are: Make a note of the bina...Read full

What is the formula for converting a binary number to a decimal number?

Ans. The following is the formula for converting a binary number to a decimal number. If ...Read full

Ans. A number expressed in the binary number system can be translated to its decimal counterpart using either the position notation method or the doubling approach.

Ans. Binary is a numerical system in which only the numbers 1 and 0 are used. The decimal number system, which uses the digits 0 through 9, is what we’re used to.

 

Ans. In mathematics, the decimal system,is a positional numeral system that uses 10 as the base and requires 10 different numerals: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. To express decimal fractions, a dot (decimal point) is also required.

Ans.  Step are:

  • Make a note of the binary number.
  • Begin by doubling your previous sum and adding the current digit.
  • Add the next leftmost digit to your existing total.
  • Carry on with the previous step.

Ans. The following is the formula for converting a binary number to a decimal number. If dnrepresents the digits of a binary number with ‘n’ digits, then,

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee
Predict your JEE Rank
.

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee
Predict your JEE Rank
.
Company Logo

Unacademy is India’s largest online learning platform. Download our apps to start learning


Starting your preparation?

Call us and we will answer all your questions about learning on Unacademy

Call +91 8585858585

Company
About usShikshodayaCareers
we're hiring
BlogsPrivacy PolicyTerms and Conditions
Help & support
User GuidelinesSite MapRefund PolicyTakedown PolicyGrievance Redressal
Products
Learner appLearner appEducator appEducator appParent appParent app
Popular goals
IIT JEEUPSCSSCCSIR UGC NETNEET UG
Trending exams
GATECATCANTA UGC NETBank Exams
Study material
UPSC Study MaterialNEET UG Study MaterialCA Foundation Study MaterialJEE Study MaterialSSC Study Material

© 2026 Sorting Hat Technologies Pvt Ltd

Unacademy's Blog!

Share via

COPY