Ternary vs Binary: Difference between revisions
No edit summary |
No edit summary |
||
Line 58: | Line 58: | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
<td>1</td> | |||
<td>2<sup>0</sup></td> | <td>2<sup>0</sup></td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
<td>2</td> | |||
<td>2<sup>1</sup></td> | <td>2<sup>1</sup></td> | ||
</tr> | </tr> | ||
</table> | </table> |
Revision as of 18:30, 5 February 2025
Binary is flat out the better easier cheaper option for computing due to the very nature of how transistors work and current fabrication technology. However it does not mean we can't still explore ternary computer design.
Maybe in the future someone will discover a semiconductor or material/atomic science electrical switch that supports three states as intrinsically as transistors and binary.
Balanced ternary is almost 'pretty'. It handles negatives naturally without numbers compliment. Unsigned ternary requires messy 3s compliment addition to handle negative numbers and subtraction. Just like 2s compliments with binary. Unsigned ternary may have faster adder logic than balanced but the added complexity of 3s compliment does not seem like a good tradeoff.
Balanced Ternary | Binary | Unsigned Ternary |
---|---|---|
Negative, Zero, Positive | Zero One | Zero, One, Two |
- 0 + | 0 1 | 0 1 2 |
Natural Negatives | Two's Complement | Three's Complement |
|
|