- Dec 7, 2000
- 102
- 0
- 0
is there a type of logic gate that can be used exclusively to implement any design? if yes or no, please explain why.
Originally posted by: psycobreed
is there a type of logic gate that can be used exclusively to implement any design? if yes or no, please explain why.
Originally posted by: maverik
of course they are all right, NAND and NOR can do the job
on the more practical side, if you have a bigger circuit with ANDs and ORs, the easy way to convert it is as follows.
a NAND is and AND followed by a NOT, alternatively, by the DeMorgan's theorem, it is also NOTs followed by a single OR.
so in a circuit, put double inversions between any two gates (AND or OR gates) and then group the inversions forward and backward with the original gates. that is, lets say you have
Lets say you have an AND-OR circuit, insert NOTs after the output of every AND, and before the input of the ORs
Now you can group the first set of AND -- NOT -- as NANDs, and the NOT --OR becomes another NAND
so (A.B)+(C.D)+E is also (A NAND B) NAND (C NAND D) NAND (E NAND E)
phew, sorry for the lecture, but i got started and couldn't stop myself.![]()
Originally posted by: gunblade
Just basic mixed logic design ....
I think that is really entry level stuff...
Originally posted by: jaeger66
Whoever invented hex should be shot. If he's dead, dug up and shot.
Originally posted by: gopunk
nand and nors can both do the job
i don't know the formal proof tho.... i just know that is the case.
Originally posted by: maverik
a NAND is and AND followed by a NOT, alternatively, by the DeMorgan's theorem, it is also NOTs followed by a single OR.