Every whole number is a unique sum of powers of two — flip the right switches on and you build it. That’s binary: the language underneath every computer, where a number is just a row of on/off bits. This corpus’s floor, 2,048, is the cleanest number of all in binary — a single 1 followed by eleven 0s (100000000000). Eleven bits, one flag set. Slide to flip bits and watch any number assemble from powers of two.
Binary (base-2) writes any non-negative integer as a unique sum of distinct powers of two: bit k contributes 2ⁿ when set. It is the substrate of all digital computing — every number, character, and instruction is ultimately a row of on/off bits. Place values double leftward (…8,4,2,1), and conversion is just repeated division/remainder by 2. The corpus floor is the tidiest value in the system: 2048 = 2¹¹ = 100000000000 — a single set bit with eleven zeros, needing 12 bits (0..2047 fits in 11). A fail-loud self-check throws unless 2048 renders as that bit-pattern and round-trips to decimal. ◆ real, node-verified.
Shown for non-negative integers; signed values (two’s complement) and fractions ([[the-machine-epsilon|floating point]]) add structure. The place-value sum and 2048’s single-bit pattern are exact.