AND (Binary Gate): Difference between revisions
From TernaryWiki
Jump to navigationJump to search
Created page with "== Truth Tables == === AND === <div class="tt"> <table class="tt"> <tr> <td class="tt_br tt_bb" colspan="2" rowspan="2">AND</td> <td colspan="3" class="tce"><b>B</b></td> </tr> <tr> <td class="tt_bb">0</td> <td class="tt_bb">1</td> </tr> <tr> <td rowspan="2"><b>A</b></td> <td class="tt_br">0</td> <td>0</td> <td>0</td> </tr> <tr> <td class="tt_br">1</td> <td>0</td> <td>1</td> </tr> </table> <table class="tt"> <tr>..." |
(No difference)
|
Latest revision as of 13:20, 13 April 2025
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 |