ANY (Ternary Gate): Difference between revisions
From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary |
|||
Line 41: | Line 41: | ||
<table class="tt"> | <table class="tt"> | ||
<tr> | |||
<td colspan="3">ANY</td> | |||
</tr> | |||
<tr> | <tr> | ||
<td class="tt_bb"><b>A</b></td> | <td class="tt_bb"><b>A</b></td> | ||
Line 95: | Line 98: | ||
<hr /> | <hr /> | ||
=== NANY === | === NANY === | ||
<div class="tt"> | <div class="tt"> |
Revision as of 01:50, 11 June 2024
Any
Uses
ANY gate is the ternary equivalent to the binary OR gate.
The negated form NANY is a universal gate just like binary NOR. Every other logic gate can be made with the correct partern of NANY gates.
Truth Tables
ANY
ANY | B | |||
- | 0 | + | ||
A | - | - | - | 0 |
0 | - | 0 | + | |
+ | 0 | + | + |
ANY | ||
A | B | Y |
- | - | - |
- | 0 | - |
- | + | 0 |
0 | - | - |
0 | 0 | 0 |
0 | + | + |
+ | - | 0 |
+ | 0 | + |
+ | + | + |
NANY
ANY | B | |||
- | 0 | + | ||
A | - | + | + | 0 |
0 | + | 0 | - | |
+ | 0 | - | - |
A | B | Y |
- | - | + |
- | 0 | + |
- | + | 0 |
0 | - | + |
0 | 0 | 0 |
0 | + | - |
+ | - | 0 |
+ | 0 | - |
+ | + | - |