-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
47 lines (43 loc) · 1.18 KB
/
main.tex
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
\documentclass[10pt]{scrartcl}
\input{preamble}
\title{A Programmer's Guide to Proving Theorems with HOL4}
\author{Anonymous}
\date{}
\begin{document}
\maketitle{}
\paragraph*{Summary}
Interactive theorem proving is a method to perform trustworthy, rigorous
mathematical proofs checked by computers.
From a programmer's point of view, learning an ITP system is similar to
learning a new programming language.
The main difference is that an ITP system allows to first implement a function,
and then prove theorems about it.
This guide is written for experienced programmers, that have seen pen-and-paper
proofs before, but never worked with an ITP system.
If you ever wanted to replace that nice, cozy thought of \emph{this function
should work as I intend it to} with the high-assurance of a rigorous
mathematical proof, this guide is for you\footnote{If you are asking yourself the question how this is even possible, the same reasoning applies.}.
%
\input{intro}
%
\input{repl}
%
\input{example1}
%
\input{libraries}
%
\input{HOL4tactics}
%
\input{tipsTricks}
%
\clearpage
\appendix
\input{script}
%
\printbibliography
%
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: