Chapter 6: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
Fonggr (talk | contribs)
Fonggr (talk | contribs)
No edit summary
Line 16: Line 16:
*"If the variables in a logic expression are replaced by their inverses, and if the AND operation is replaced by OR, the OR operation is replaced by AND, and the expression is inverted, the resulting logic expression yields the same values as before the changes."<ref>Electronics p.353</ref>
*"If the variables in a logic expression are replaced by their inverses, and if the AND operation is replaced by OR, the OR operation is replaced by AND, and the expression is inverted, the resulting logic expression yields the same values as before the changes."<ref>Electronics p.353</ref>
*It is possible to create any combinatorial logic function with solely NAND (or NOR) gates
*It is possible to create any combinatorial logic function with solely NAND (or NOR) gates
:*Inv: <math>\overline{A}=\overline{AA}</math>
{| class="wikitable" border="1" style="text-align:center"
:*AND: <math>AB=\overline{(\overline{A}+\overline{B})}</math>
!Gate!!Symbol!!NAND equivalent
:*OR: <math>A+B=\overline{(\overline{A} \, \overline{B})}</math>
|-
|Inverter||<math>\overline{A}</math>||<math>\overline{AA}</math>
|-
|AND||<math>AB</math>||<math>\overline{(\overline{A}+\overline{B})}</math>
|-
|OR||<math>A+B</math>||<math>\overline{(\overline{A} \, \overline{B})}</math>
|}


===References===
===References===
<references/>
<references/>

Revision as of 20:33, 23 March 2010

Digital Logic Gates

Boolean Algebra
A B NAND
AB
NOR
A+B
XOR
AB
0 0 1 1 0
0 1 1 0 1
1 0 1 0 1
1 1 0 0 0

De Morgan Laws & NAND Equivalent Gates

  • "If the variables in a logic expression are replaced by their inverses, and if the AND operation is replaced by OR, the OR operation is replaced by AND, and the expression is inverted, the resulting logic expression yields the same values as before the changes."<ref>Electronics p.353</ref>
  • It is possible to create any combinatorial logic function with solely NAND (or NOR) gates
Gate Symbol NAND equivalent
Inverter A AA
AND AB (A+B)
OR A+B (AB)

References

<references/>