AND (Binary Gate): Difference between revisions

From T729 Balanced Ternary Computer
Jump to navigationJump to search
No edit summary
No edit summary
Line 83: Line 83:
<table class="tt">
<table class="tt">
<tr>
<tr>
<td colspan="3">AND</td>
<td colspan="3">NAND</td>
</tr>
</tr>
<tr>
<tr>

Revision as of 09:30, 16 June 2024

Truth Tables

AND

AND B
0 1
A 0 0 0
1 0 1
AND
A B Y
0 0 0
0 1 0
1 0 0
1 1 1

NAND

NAND B
0 1
A 0 1 1
1 1 0
NAND
A B Y
0 0 1
0 1 1
1 0 1
1 1 0