diff options
Diffstat (limited to 'test/examples/replace.tex')
| -rw-r--r-- | test/examples/replace.tex | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/examples/replace.tex b/test/examples/replace.tex new file mode 100644 index 0000000..66fae16 --- /dev/null +++ b/test/examples/replace.tex @@ -0,0 +1,27 @@ +\begin{axiom}\label{cons} + $x\in \cons{y}{X}$ iff $x = y$ or $x\in X$. +\end{axiom} + +\begin{definition}\label{times} + $A\times B = \{ (a,b) \mid a\in A, b\in B\}$. +\end{definition} + +\begin{definition}\label{unit} + $\unit = \{\emptyset\}$. +\end{definition} + +\begin{proposition}\label{pair_emptyset_in_times_unit} + $(\emptyset,\emptyset)\in \unit\times\unit$. +\end{proposition} + + +% Indirect definition of the Zermelo successor operation to test primitive replacement. +\begin{definition}\label{suc} + $\suc{a} = \{ y \mid \exists x\in a. y = \{x\} \}$. +\end{definition} + + +% Dummy proposition to test unrolling of functional replacement in equations. +\begin{proposition}\label{times_replacement_test} + $A\times B = \{ (a,b) \mid a\in A, b\in B\}$. +\end{proposition} |
