www.mikrocontroller.net

Logische Verknüpfungen

Inhaltsverzeichnis

[Bearbeiten] UND

(Konjunktion)

x = a \wedge b
Bild:AND.png
a b x
0 0 0
0 1 0
1 0 0
1 1 1

[Bearbeiten] ODER

Verknüpfung (Disjunktion)

x = a \vee b
Bild:ODER.png
a b x
0 0 0
0 1 1
1 0 1
1 1 1

[Bearbeiten] NICHT

Verknüpfung (Negation)

x = \overline{a}
Bild:NOT.png
a x
0 1
1 0

[Bearbeiten] NAND

Verknüpfung

x = \overline{a \wedge b}
Bild:NAND.png
a b x
0 0 1
0 1 1
1 0 1
1 1 0

[Bearbeiten] NOR

Verknüpfung (Konjunktion)

x = \overline{a \vee b}
Bild:NOR.png
a b x
0 0 1
0 1 0
1 0 0
1 1 0

[Bearbeiten] XOR

Exklusiv-ODER-Verknüpfung (Antivalenz)

x = (a \wedge \overline{b}) \vee (\overline{a} \wedge b)
Bild:XOR.png
a b x
0 0 0
0 1 1
1 0 1
1 1 0

[Bearbeiten] XNOR

Exklusiv-NOR-Verknüpfung (Äquivalenz)

x = (a \wedge b) \vee (\overline{a} \wedge \overline{b})
Bild:XNOR.png
a b x
0 0 1
0 1 0
1 0 0
1 1 1

Sperrgatter (Inhibition)

x = \overline{a} \wedge b
Bild:Inhibition.png
a b x
0 0 0
0 1 1
1 0 0
1 1 0

Subjunktion (Implikation)

x = \overline{a} \vee b
Bild:Implikation.png
a b x
0 0 1
0 1 1
1 0 0
1 1 1
webmaster@mikrocontroller.netImpressumNutzungsbedingungenWerbung auf Mikrocontroller.net