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

17
MA1511/sets.tex Normal file
View File

@@ -0,0 +1,17 @@
\input{decls.tex}
\title{Sets}
\begin{document}
\maketitle
Set comprehensions can be written $\{ x | x \in \N \}$ or $\{ x : x \in \N \}$ - '$:$' or '$|$'
\begin{description}
\item[Axiom of Extensionality / Set Equality] $A = B \iff \forall x. (x \in A \iff x \in B)$
\item[$A \subseteq B$] \quad $\forall x \in A. x \in B$ \\
Is transitive, reflexive, antisymmetric
\item[$A \subset B$] \quad $(\forall x \in A.~x \in B) \land (\exists x \in B.~x \not\in A)$ \\
Is transitive, antisymmetric
\item[$\varnothing$] $\{\}$
\item[$\cup$] Union
\item[$\cap$] Intersection
\item[$A \setminus B$] \quad $\{ x \in A : x \not\in B \}$
\end{description}
\end{document}