Logische Verknüpfungen: Unterschied zwischen den Versionen

Aus der Mikrocontroller.net Artikelsammlung, mit Beiträgen verschiedener Autoren (siehe Versionsgeschichte)
Wechseln zu: Navigation, Suche
(Änderung 89992 von 2003:63:2B37:8701:4D1E:EC41:1288:7FBE (Diskussion) rückgängig gemacht.)
(Änderung 89993 von 2003:63:2B37:8701:4D1E:EC41:1288:7FBE (Diskussion) rückgängig gemacht.)
Zeile 266: Zeile 266:
   <td>1</td>
   <td>1</td>
   <td>1</td>
   <td>1</td>
   <td>0</td>
   <td>1</td>
  </tr>
  </tr>
</table>
</table>

Version vom 15. Oktober 2015, 18:12 Uhr

UND

(Konjunktion)

[math]\displaystyle{ x = a \wedge b }[/math]
AND.png
a b x
0 0 0
0 1 0
1 0 0
1 1 1

ODER

Verknüpfung (Disjunktion)

[math]\displaystyle{ x = a \vee b }[/math]
ODER.png
a b x
0 0 0
0 1 1
1 0 1
1 1 1

NICHT

Verknüpfung (Negation)

[math]\displaystyle{ x = \overline{a} }[/math]
NOT.png
a x
0 1
1 0

NAND

Verknüpfung

[math]\displaystyle{ x = \overline{a \wedge b} }[/math]
NAND.png
a b x
0 0 1
0 1 1
1 0 1
1 1 0

NOR

Verknüpfung (Konjunktion)

[math]\displaystyle{ x = \overline{a \vee b} }[/math]
NOR.png
a b x
0 0 1
0 1 0
1 0 0
1 1 0

XOR

Exklusiv-ODER-Verknüpfung (Antivalenz)

[math]\displaystyle{ x = (a \wedge \overline{b}) \vee (\overline{a} \wedge b) }[/math]
XOR.png
a b x
0 0 0
0 1 1
1 0 1
1 1 0

XNOR

Exklusiv-NOR-Verknüpfung (Äquivalenz)

[math]\displaystyle{ x = (a \wedge b) \vee (\overline{a} \wedge \overline{b}) }[/math]
XNOR.png
a b x
0 0 1
0 1 0
1 0 0
1 1 1

Sperrgatter (Inhibition)

[math]\displaystyle{ x = \overline{a} \wedge b }[/math]
Inhibition.png
a b x
0 0 0
0 1 1
1 0 0
1 1 0

Subjunktion (Implikation)

[math]\displaystyle{ x = \overline{a} \vee b }[/math]
Implikation.png
a b x
0 0 1
0 1 1
1 0 0
1 1 1