-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFolien_Tut_10.tex
More file actions
executable file
·70 lines (62 loc) · 2.1 KB
/
Copy pathFolien_Tut_10.tex
File metadata and controls
executable file
·70 lines (62 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usetheme[deutsch]{KIT}
\author{Simon Bischof ([email protected])}
\title{Tutorium Theoretische Grundlagen der Informatik}
\subtitle{Simon Bischof}
\institute{Institut f\"{u}r Kryptographie und Sicherheit}
\TitleImage[scale=0.7]{tmaschine.png}
\newcommand{\F}{\Sigma^*}
\newcommand{\N}{\ensuremath \mathbb{N}}
\newcommand{\R}{\ensuremath \mathbb{R}}
\renewcommand{\P}{\ensuremath \mathcal{P}}
\newcommand{\NP}{\ensuremath \mathcal{NP}}
\newcommand{\NPC}{\ensuremath \mathcal{NP-C}}
\begin{document}
\shorthandoff{"}
\begin{frame}
\maketitle
\end{frame}
\begin{frame}
\frametitle{\LARGE Geh wählen!}
Nächste Woche:
\begin{itemize}
\item Wahl des Studierendenparlaments
\item Fachschaftssprecher-Wahl
\item Wahl der Frauenreferentin (nur für Frauen)
\item Wahl des Ausländerreferenten (nur für Studenten mit anderer Staatsangehörigkeit)
\item Urabstimmung über die Satzung der Verfassten Studierendenschaft
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Zur Kolmogorov-Komplexität}
\includegraphics[scale=0.35]{kolmogorov_directions.png}\\
{\tiny Quelle: xkcd.com/1155}
\end{frame}
\begin{frame}
\frametitle{Wie beweise ich $L\in\NPC$?}
\begin{itemize}
\item $L\in\NP$
\item $B\leq_p L$ für ein $B\in\NPC$\pause
\item und nun? Wie bekommen wir ein erstes $\NPC$-Problem?\pause
\item Satz von Cook: SAT$\in\NPC$ (SAT in KNF)
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Probleme aus $\NPC$, wichtige Reduktionen}
\begin{itemize}
\item SAT $\leq$ 3SAT\pause
\item 3SAT $\leq$ 3COLOR\pause
\item VERTEX COVER: Geg.: ungerichteter Graph $G=(V,E)$ und $k\in\N$\\
Frage: $\exists V^\prime\subseteq V$ mit $|V^\prime|\leq k$ und $\forall e\in E:e\cap V^\prime\neq\emptyset$?\\ 3SAT $\leq$ VERTEX COVER\pause
\item SUBSET SUM: Gegeben $X\subseteq\N$ endlich, $k\in\N$. $\exists T\subseteq X:\sum\limits_{t\in T}t=k$?\pause
\item HAMILTONIAN PATH $\leq$ HAMILTONIAN CYCLE
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{zum Schluss}
\includegraphics[scale=4]{np_complete.png}\\
{\tiny Quelle: xkcd.com/287}
\end{frame}
\end{document}