Convert Base 3 to Binary

Convert Base 3 (base 3) to Binary (bin) instantly and accurately.

Selected Base 3 (base 3) - available characters: 0, 1, 2

Base 3 (base 3)
Binary (bin)

Conversion Formula

Step-by-step example using the value 42 (decimal):

Convert Base 3 (base 3) → Binary (base 2)

Step 1: Expand each digit of 1120 (base 3) by position:

        1 × 3^3 = 27
        1 × 3^2 =  9
        2 × 3^1 =  6
        0 × 3^0 =  0
        ────────────
        Sum = 42 (decimal)

Step 2: Divide 42 by 2 repeatedly (read remainders upward):

        42 ÷ 2 = 21  r 0
        21 ÷ 2 = 10  r 1
        10 ÷ 2 =  5  r 0
         5 ÷ 2 =  2  r 1
         2 ÷ 2 =  1  r 0
         1 ÷ 2 =  0  r 1
        Read remainders upward: 101010

────────────────────────────
Result:  1120 (base 3) = 101010 (bin)

About Base 3

Ternary (base 3) uses digits 0, 1, 2. Each position is a power of 3: 3⁰=1, 3¹=3, 3²=9, 3³=27. Balanced ternary (−1, 0, +1) represents negatives without a sign and minimises rounding error. The Soviet Setun computer (1958) was the only practical balanced-ternary machine. Ternary underlies the Cantor set and Toom-Cook multiplication. Conversion: decimal 42 = 1×27+1×9+2×3+0 = 1120₃.

About Binary

Binary (base 2) is the foundational numeral system of all digital electronics, using only 0 and 1. Each position represents a power of 2: 2⁰=1, 2¹=2, 2²=4, 2³=8. Leibniz formalised it in 1679; Shannon applied Boolean logic to circuits in 1948. 8 bits = 1 byte (256 values) - the fundamental unit in every CPU from the 8080 to ARM Cortex-X. Every integer, float, character, pixel, and instruction in any digital device is ultimately binary. Conversion: decimal 42 = 32+8+2 = 2⁵+2³+2¹ = 101010₂.

Quick Reference Table

Base 3 (base 3)Binary (bin)
11
210
12101
221000
1011010
1201111
12110000
1120101010
21011000000
102011100100
10011011111111

→ Full Number Base Converter