User Tools

Site Tools


glossary:logicgates

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
glossary:logicgates [2013/04/15 20:18] Bob Vetterleinglossary:logicgates [2019/04/03 11:46] (current) Bob Vetterlein
Line 1: Line 1:
 ====== Logic Gates ====== ====== Logic Gates ======
  
-This subject is covered extensively by [[http://en.wikipedia.org/wiki/Logic_gates|Wikipedia here]]. \\ Clicking on one of the images below will take you to an article on the specific gate. +==== Overview ==== 
-[[http://en.wikipedia.org/wiki/AND_gate|{{:glossary:120px-and_ansi_labelled_svg.png? |AND gate}}]] [[http://en.wikipedia.org/wiki/OR_gate|{{ :glossary:120px-or_ansi_labelled_svg.png? |OR gate}}]] [[http://en.wikipedia.org/wiki/NAND_gate|{{:glossary:120px-nand_ansi_labelled_svg.png?nolink& |NAND gate}}]] [[http://en.wikipedia.org/wiki/NOR_gate|{{ :glossary:120px-nor_ansi_labelled_svg.png? |NOR gate}}]] [[http://en.wikipedia.org/wiki/XOR_gate|{{:glossary:100px-xor_ansi_svg.png? |XOR gate}}]]+This page gives a brief description of the principal logic gates, a detailed description will be found in Wikipedia by clicking on each of the images. A more detailed overview is in [[http://en.wikipedia.org/wiki/Logic_gates|Wikipedia here]].\\ [[start|Return to main Glossary index]]\\  
 + 
 +==== AND ==== 
 + 
 + 
 +[[http://en.wikipedia.org/wiki/AND_gate|{{:glossary:120px-and_ansi_labelled_svg.png?nolink&  }}]]Boolean operator which is used to join two or more statements so that the final statement is true only if the individual statements are all true. Thus (X>1)AND(X<2) is true if X is between 1 and 2. 
 +^  A  ^  B  ^  Q= A AND B  ^ 
 +|  0  |  0  |  0  | 
 +|  1  |  0  |  0  | 
 +|  0  |  1  |  0  | 
 +|  1  |  1  |  1  | 
 +==== OR ==== 
 + 
 + 
 +[[http://en.wikipedia.org/wiki/OR_gate|{{:glossary:120px-or_ansi_labelled_svg.png?nolink&  }}]]Boolean operator which is used to join two or more statements so that the final statement is true if any of the individual statements are true. 
 +^  A  ^  B  ^  Q= A OR B  ^ 
 +|  0  |  0  |  0  | 
 +|  1  |  0  |  1  | 
 +|  0  |  1  |  1  | 
 +|  1  |  1  |  1  | 
 +==== NAND ==== 
 + 
 + 
 +[[http://en.wikipedia.org/wiki/NAND_gate|{{:glossary:120px-nand_ansi_labelled_svg.png?nolink&  }}]]Boolean operator which is used to join two or more statements so that the final statement is false only if the individual statements are all true. Inverted AND. 
 +^  A  ^  B  ^  Q= A NAND B  ^ 
 +|  0  |  0  |  1  | 
 +|  1  |  0  |  1  | 
 +|  0  |  1  |  1  | 
 +|  1  |  1  |  0  | 
 +==== NOR ==== 
 + 
 + 
 +[[http://en.wikipedia.org/wiki/NOR_gate|{{:glossary:120px-nor_ansi_labelled_svg.png?nolink&  }}]]Boolean operator which is used to join two or more statements so that the final statement is false if any of the individual statements are true. Inverted OR. 
 +^  A  ^  B  ^  Q= A NOR B  ^ 
 +|  0  |  0  |  1  | 
 +|  1  |  0  |  0  | 
 +|  0  |  1  |  0  | 
 +|  1  |  1  |  0  | 
 +==== XOR ==== 
 +[[http://en.wikipedia.org/wiki/XOR_gate|{{:glossary:xor-gate.png? |}}]]Exclusive OR. Boolean operator which is used to join two statements so that the final statement is true if one or other of the individual statements are true but not both. 
 +^  A  ^  B  ^  Q= A XOR B  ^ 
 +|  0  |  0  |  0  | 
 +|  1  |  0  |  1  | 
 +|  0  |  1  |  1  | 
 +|  1  |  1  |  0  | 
 +==== NOT ==== 
 +[[http://en.wikipedia.org/wiki/NOT_gate|{{:glossary:not-gate.png? |NOT gate}}]]In digital logic, an inverter or NOT gate is a logic gate which implements logical negation.\\ 
glossary/logicgates.txt · Last modified: 2019/04/03 11:46 by Bob Vetterlein

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki