This commit is contained in:
bluepython508
2024-02-02 11:07:11 +00:00
parent dc42625cf1
commit a35662637b
11 changed files with 115 additions and 1 deletions

19
MA1511/logic.tex Normal file
View File

@@ -0,0 +1,19 @@
\input{decls.tex}
\title{Essential Logic}
\begin{document}
\maketitle
\begin{description}
\item[Statement] Something which is either \emph{true} or \emph{false} \\
Often dependent on variables from some universe; labelled $P$, $Q$, ...
\end{description}
\section*{Logical Connectives}
\begin{description}
\item[$\neg P$] NOT
\item[$P \land Q$] Conjunction / AND
\item[$P \lor Q$] Disjunction / OR
\item[$P \implies Q$] Implication / IF
\item[$P \iff Q$] IFF
\item[Contrapositive of $P \implies Q$:] $\neg Q \implies \neg P$ \\
$\neg Q \implies \neg P \equiv P \implies Q \quad\forall P, Q$
\end{description}
\end{document}