Binary → Decimal

Convert binary representation to decimal value detailing the powers of 2 calculation.

d = \sum b_i \times 2^i
Result

Step-by-Step Calculation & Explanation

To convert a binary number to decimal, multiply each binary digit by its corresponding power of 2, starting with \( 2^0 \) on the far right, and sum all the products together.