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

8 lines
518 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: 3</h3>
<p>The ternary (base-3) numeral system uses three digits: 0, 1, and 2. Each position represents a power of 3.</p>
<h3>How it works</h3>
<div class="theory-example">112 = 1×9 + 1×3 + 2×1 = 14</div>
<h3>Digits</h3>
<div class="theory-example">0 1 2</div>
<h3>Uses</h3>
<p>Ternary systems are used in some specialized computing applications (ternary logic). Some argue that base-3 is the most efficient integer base for computation, as it is the closest to the mathematical constant e ≈ 2.718.</p>