-
Notifications
You must be signed in to change notification settings - Fork 5
/
03B05-ExampleOfTautology.tex
59 lines (49 loc) · 1.56 KB
/
03B05-ExampleOfTautology.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
48
49
50
51
52
53
54
55
56
57
58
59
\documentclass[12pt]{article}
\usepackage{pmmeta}
\pmcanonicalname{ExampleOfTautology}
\pmcreated{2013-03-22 15:27:38}
\pmmodified{2013-03-22 15:27:38}
\pmowner{bloftin}{6104}
\pmmodifier{bloftin}{6104}
\pmtitle{example of tautology}
\pmrecord{4}{37311}
\pmprivacy{1}
\pmauthor{bloftin}{6104}
\pmtype{Example}
\pmcomment{trigger rebuild}
\pmclassification{msc}{03B05}
\pmclassification{msc}{03B10}
\endmetadata
% this is the default PlanetMath preamble. as your knowledge
% of TeX increases, you will probably want to edit this, but
% it should be fine as is for beginners.
% almost certainly you want these
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsfonts}
% used for TeXing text within eps files
%\usepackage{psfrag}
% need this for including graphics (\includegraphics)
%\usepackage{graphicx}
% for neatly defining theorems and propositions
%\usepackage{amsthm}
% making logically defined graphics
%%%\usepackage{xypic}
% there are many more packages, add them here as you need them
% define commands here
\begin{document}
An example of a tautology and how to test it is given in the truth table below for the statement $(P \vee Q) \vee ( \neg P \wedge \neg Q) $
\begin{center}
\begin{tabular}{ccccc}
$P$ & $Q$ & $\neg P \wedge \neg Q$ & $P \vee Q$ & $(P \vee Q) \vee ( \neg P \wedge \neg Q)$ \\
\hline
F & F & T & F & T \\
F & T & F & T & T \\
T & F & F & T & T \\
T & T & F & T & T
\end{tabular}
\end{center}
Thus for whatever truth values P and Q take on, the statement always comes out true as shown in the last coloumn of the truth table.
%%%%%
%%%%%
\end{document}