beweisverfahren hinzugefügt

This commit is contained in:
paul-loedige 2021-02-02 19:12:41 +01:00
parent a1a53ee85f
commit f6e7a5ddd3
9 changed files with 54 additions and 1 deletions

View File

@ -9,4 +9,5 @@
\acro{PEAS}{Performance, Environment, Actuators, Sensors} \acro{PEAS}{Performance, Environment, Actuators, Sensors}
\acro{TSP}{Traveling Salesman Problem} \acro{TSP}{Traveling Salesman Problem}
\acro{CSP}{Constraint Satisfaction Problem} \acro{CSP}{Constraint Satisfaction Problem}
\acro{KNF}{Konjunktive Normalform}
\end{acronym} \end{acronym}

View File

@ -0,0 +1,51 @@
\chapter{Beweisverfahren}
\label{logik: beweisverfahren}
\section{Logische Folgerung}
\label{logische folgerung}
$$\models \subseteq Formel(\Sigma)\times Formel(\Sigma)$$
$$ F \models G: \text{Aus }F\text{ folgt logisch }G$$
$$ F \models G \text{ gdw. } Mod(F)\subseteq Mod(G)$$
\includegraphics[width = .8\textwidth]{folgerung.png}\\
Hieraus lässt sich ein automatisiertes Beweisverfahren entwickeln, indem überprüft wird, ob in jeder Welt, ind der $F$ war ist auch $G$ war ist.
\section{Widerspruchsbeweis}
\label{widerspruchsbeweis}
$$F\models G \text{ gdw. }F\wedge\neg G \text{ unerfüllbar}$$
Hieraus lässt sich ein automatisiertes Beweisverfahren aufstellen, indem $\neg G$ zu $F$ hinzugefügt wird und daraus ein Widerspruch abgeleitet wird.
\section{Inferenz}
\label{inferenz}
$$F\models G$$
Dies ist auf 2 Arten beweisbar:
\begin{enumerate}
\item \textbf{Modellüberprüfung:}\\
Überprüfung, ob in allen Welten, in denen $F$ war ist auch $G$ war ist
\item \textbf{Theoreme beweisen:}\\
Abfolge von Beweisschritten (Inferenzregeln(\ref{inferenzregeln})) von $WB$ nach $F$
\end{enumerate}
\subsection{Inferenzalgorithmen}
\label{inferenzalgorithmen}
\includegraphics[width = \textwidth]{inferenzalgorithmen.png}
\subsection{Inferenzregeln}
\label{inferenzregeln}
\includegraphics[width = .8\textwidth]{inferenzregeln.png}
\subsection{Beweis durch Resolution}
\label{beweis durch resolution}
$$\frac{A\vee B, \neg B\vee C}{A\vee C}$$
\subsection{Allgemeine Resolutionsregel}
\label{allgemeine resolutionsregel}
$$\frac{(A_1\vee \dots \vee A_m\vee B), (\neg B \vee C_1 \vee\dots\vee C_n)}{(A_1\vee\dots\vee A_m\vee C_1\vee\dots\vee C_n)}$$
\subsection{Klauselform}
\label{klauselform}
Die Klauselform ist die Mengendarstellung der \ac{KNF}:\\
\includegraphics[width = \textwidth]{klauselform.png}
\subsection{Resolutionsalgorithmus}
\label{resolutionsalgorithmus}
\includegraphics[width = .8\textwidth]{resolutionsalgorithmus1.png}\\
\includegraphics[width = .3\textwidth]{resolutionsalgorithmus2.png}

BIN
images/folgerung.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
images/inferenzregeln.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
images/klauselform.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -4,3 +4,4 @@
\input{chapters/Logik/Formen der Inferenz.tex} \input{chapters/Logik/Formen der Inferenz.tex}
\input{chapters/Logik/Logische Systeme.tex} \input{chapters/Logik/Logische Systeme.tex}
\input{chapters/Logik/Aussagenlogik.tex} \input{chapters/Logik/Aussagenlogik.tex}
\input{chapters/Logik/Beweisverfahren.tex}