Logische Verknüpfungen: Unterschied zwischen den Versionen

Aus der Mikrocontroller.net Artikelsammlung, mit Beiträgen verschiedener Autoren (siehe Versionsgeschichte)
Wechseln zu: Navigation, Suche
(a)
 
(16 dazwischenliegende Versionen von 8 Benutzern werden nicht angezeigt)
Zeile 9: Zeile 9:
<td>
<td>


<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>
Zeile 47: Zeile 47:
:<math>x = a \vee b</math>
:<math>x = a \vee b</math>


<table border="0">
<table border="0" >
<tr>
<tr>
<td>[[Bild:ODER.png]]</td>
<td>[[Bild:ODER.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>
Zeile 92: Zeile 92:
<td>[[Bild:NOT.png]]</td>
<td>[[Bild:NOT.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>
Zeile 120: Zeile 120:
<td>[[Bild:NAND.png]]</td>
<td>[[Bild:NAND.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>d
   <td> '''a''' </td>
   <td> '''b''' </td>
   <td> '''b''' </td>
   <td> '''x''' </td>
   <td> '''x''' </td>
Zeile 161: Zeile 161:
<td>[[Bild:NOR.png]]</td>
<td>[[Bild:NOR.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>
Zeile 202: Zeile 202:
<td>[[Bild:XOR.png]]</td>
<td>[[Bild:XOR.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>
Zeile 243: Zeile 243:
<td>[[Bild:XNOR.png]]</td>
<td>[[Bild:XNOR.png]]</td>
<td>
<td>
<table border="1">
<table border="1" style="width:200px">
  <tr>
  <tr>
   <td> '''a''' </td>
   <td> '''a''' </td>

Aktuelle Version vom 8. Februar 2021, 07:14 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