Enter a binary number below to convert it to decimal. Our converter handles binary numbers of any length.
Converting binary numbers to decimal is a fundamental operation in computer science and digital systems. Here's a comprehensive guide on how to perform this conversion:
The formula for converting a binary number to decimal is:
\[ d = b_n \times 2^n + b_{n-1} \times 2^{n-1} + ... + b_1 \times 2^1 + b_0 \times 2^0 \]Where:
Let's convert the binary number 1010 to decimal.
1010 = 1 × 2³ + 0 × 2² + 1 × 2¹ + 0 × 2⁰
1 × 2³ = 1 × 8 = 8
0 × 2² = 0 × 4 = 0
1 × 2¹ = 1 × 2 = 2
0 × 2⁰ = 0 × 1 = 0
8 + 0 + 2 + 0 = 10
Therefore, 1010 in binary = 10 in decimal
This diagram illustrates the process of converting the binary number 1010 to its decimal equivalent 10.