Update
This commit is contained in:
parent
997823cb0d
commit
ea07d624a8
13 changed files with 1907 additions and 1888 deletions
|
@ -58,7 +58,7 @@ The truth table of these gates is as follows:
|
|||
|
||||
*symbols often used for logic gates*
|
||||
|
||||
Functions NAND and NOR are [functionally complete](functional_completeness.md) which means we can implement any other gate with only one of these gates. For example NOT(x) = NAND(x,x), AND(x,y) = NAND(NAND(x,y),NAND(x,y)), OR(x,y) = NAND(NAND(x,x),NAND(y,y)) etc. Similarly NOT(x) = NOR(x,x), OR(x,y) = NOR(NOR(x,y),NOR(x,y)) etc. NAND and NOR are the only two functions that are functionally complete by themselves, but there are more functionally complete sets of multiple functions, for example OR together with NOT can also implement any other function (which can be seen from the fact that we can implement NOR as NOT(OR(x,y), and we know NOR is already functionally complete). More detail on this will follow below.
|
||||
Functions NAND and NOR are [functionally complete](functional_completeness.md) which means we can implement any other gate with only one of these gates. For example NOT(x) = NAND(x,x), AND(x,y) = NAND(NAND(x,y),NAND(x,y)), OR(x,y) = NAND(NAND(x,x),NAND(y,y)) etc. Similarly NOT(x) = NOR(x,x), OR(x,y) = NOR(NOR(x,y),NOR(x,y)) etc. NAND and NOR are the only two functions that are functionally complete by themselves, but there are more functionally complete sets of multiple functions, for example OR together with NOT can also implement any other function (which can be seen from the fact that we can implement NOR as NOT(OR(x,y)), and we know NOR is already functionally complete). More detail on this will follow below.
|
||||
|
||||
## More Detail On Boolean Functions
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue