Ternary vs Binary: Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
Tag: Reverted
Line 38: Line 38:
<tr>
<tr>
<td>
<td>
<table style="table-layout: fixed; width: 100%;">
<table style="table-layout: fixed; width: 50%;">
<tr>
<tr>
<th colspan="2">Power of 3</th>
<th colspan="2">Power of 3</th>
Line 53: Line 53:
</td>
</td>
<td>
<td>
<table style="table-layout: fixed; width: 100%;">
<table style="table-layout: fixed; width: 50%;">
<tr>
<tr>
<th colspan="2">Power of 2</th>
<th colspan="2">Power of 2</th>

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

Power of 3
30 1
31 3
Power of 2
1 20
2 21