Files
numnum/theory/binary.en.html
T
2026-07-17 23:44:44 +03:00

9 lines
649 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<h3>Base: 2</h3>
<p>The binary (base-2) numeral system uses only two digits: 0 and 1. It is the fundamental language of digital computers, where each digit represents a single bit — an electrical signal that is either off (0) or on (1).</p>
<h3>How it works</h3>
<p>Each position represents a power of 2, increasing from right to left:</p>
<div class="theory-example">1011 = 1×8 + 0×4 + 1×2 + 1×1 = 11</div>
<h3>Digits</h3>
<div class="theory-example">0 1</div>
<h3>Uses</h3>
<p>Binary is used internally by all modern computers. File storage, memory addresses, and network protocols all rely on binary representation at the lowest level.</p>