-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Korrektur der Beispiele für KDNF und KKNF
außerdem dieses mal Versionsnummer inkrementiert
- Loading branch information
1 parent
bad7805
commit 3540fcf
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
author: Sebastian Zug & André Dietrich & Fabian Bär | ||
email: [email protected] & [email protected] & [email protected] | ||
version: 0.0.2 | ||
version: 0.0.3 | ||
language: de | ||
narrator: Deutsch Female | ||
|
@@ -226,12 +226,12 @@ Und nun in der Kombination .... | |
**Kanonische Disjunktive Normalform (KDNF)** | ||
|
||
+ eindeutige Darstellung einer booleschen Funktion f als Disjunktion von Mintermen | ||
+ Beispiel: $( x \cdot y \cdot z ) + ( x \cdot y \cdot z ) + ( x \cdot y \cdot z )$ ist KDNF von $f(x,y,z)$ | ||
+ Beispiel: $( \overline{x} \cdot y \cdot z ) + ( x \cdot \overline{y} \cdot \overline{z} ) + ( \overline{x} \cdot y \cdot \overline{z} )$ ist KDNF von $f(x,y,z)$ | ||
|
||
**Kanonische Konjunktive Normalform (KKNF)** | ||
|
||
+ eindeutige Darstellung einer booleschen Funktion f als Konjunktion von Maxtermen | ||
+ Beispiel: $( x + y ) \cdot ( x + y ) \cdot ( x + y )$ ist KKNF von $f(x,y)$ | ||
+ Beispiel: $( x + \overline{y} ) \cdot ( \overline{x} + y ) \cdot ( \overline{x} + \overline{y} )$ ist KKNF von $f(x,y)$ | ||
******************************************************************************** | ||
|
||
{{3-4}} | ||
|