Logische Verknüpfungen: Unterschied zwischen den Versionen

Aus der Mikrocontroller.net Artikelsammlung, mit Beiträgen verschiedener Autoren (siehe Versionsgeschichte)
Wechseln zu: Navigation, Suche
Zeile 233: Zeile 233:
-----
-----


====XNOR====
====Summerschaltung für 3009====
Exklusiv-NOR-Verknüpfung (Äquivalenz)
Exklusiv-NOR-Verknüpfung (Äquivalenz)


Zeile 244: Zeile 244:
<table border="1">
<table border="1">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td
  <td> '''b''' </td>
  <td> '''x''' </td>
</tr>
<tr>
  <td>0</td>
  <td>0</td>
  <td>1</td>
</tr>
  <tr>
  <tr>
   <td>0</td>
   <td>0</td>
   <td>1</td>
   <td>1</td>
  <td>0</td>
</tr>
<tr>
  <td>1</td>
  <td>0</td>
  <td>0</td>
</tr>
<tr>
  <td>1</td>
  <td>1</td>
  <td>1</td>
</tr>
</table>
</td></tr>
</table>
-----


'''Ficken''' (Inhibition)
:<math>x = \overline{a} \wedge b</math>
<table border="0">
<tr>
<td>[[Bild:Inhibition.png]]</td>
<td>
<table border="1">
  <tr>
  <tr>
  <td> '''a''' </td>
  <td> '''b''' </td>
  <td> '''x''' </td>
</tr>
<tr>
  <td>0</td>
  <td>0</td>
  <td>0</td>
</tr>
<tr>
  <td>0</td>
   <td>1</td>
   <td>1</td>
   <td>1</td>
   <td>1</td>
</tr>
<tr>
   <td>1</td>
   <td>1</td>
  <td>0</td>
  <td>0</td>
</tr>
<tr>
  <td>1</td>
  <td>1</td>
  <td>0</td>
  </tr>
  </tr>
</table>
</table>
Zeile 313: Zeile 259:


-----
-----
'''Subjunktion''' (Implikation)
:<math>x = \overline{a} \vee b</math>
<table border="0">
<tr>
<td>[[Bild:Implikation.png]]</td>
<td>
<table border="1">
<tr>
  <td> '''a''' </td>
  <td> '''b''' </td>
  <td> '''x''' </td>
</tr>
<tr>
  <td>0</td>
  <td>0</td>
  <td>1</td>
  </tr>
  </tr>
  <tr>
  <tr>

Version vom 11. April 2013, 06:45 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

Summerschaltung für 3009

Exklusiv-NOR-Verknüpfung (Äquivalenz)

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

0 1 1 1 0 0 1 1 1