diff options
| author | Simon-Kor <52245124+Simon-Kor@users.noreply.github.com> | 2024-05-28 16:26:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-28 16:26:19 +0200 |
| commit | a6a83d15a866d7ba40dfc6b733cea14314da3b25 (patch) | |
| tree | f41fd89c9e4f40f70201546073c19bccf19afe60 /library/nat.tex | |
| parent | a5deeef9c3214f0f2ccd90789f5344a88544d65b (diff) | |
| parent | ecfb1a66f2159e078199e54edf8a80004c28195a (diff) | |
Merge branch 'main' into main
Diffstat (limited to 'library/nat.tex')
| -rw-r--r-- | library/nat.tex | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/library/nat.tex b/library/nat.tex index 529ba54..ac9a141 100644 --- a/library/nat.tex +++ b/library/nat.tex @@ -1,5 +1,5 @@ \import{set/suc.tex} - +\import{set.tex} \section{Natural numbers} @@ -17,5 +17,46 @@ \end{axiom} \begin{abbreviation}\label{naturalnumber} - $n$ is a natural number iff $n\in\naturals$. + $n$ is a natural number iff $n\in \naturals$. +\end{abbreviation} + +\begin{lemma}\label{emptyset_in_naturals} + $\emptyset\in\naturals$. +\end{lemma} + +\begin{signature}\label{addition_is_set} + $x+y$ is a set. +\end{signature} + +\begin{axiom}\label{addition_on_naturals} + $x+y$ is a natural number iff $x$ is a natural number and $y$ is a natural number. +\end{axiom} + +\begin{abbreviation}\label{zero_is_emptyset} + $\zero = \emptyset$. \end{abbreviation} + +\begin{axiom}\label{addition_axiom_1} + For all $x \in \naturals$ $x + \zero = \zero + x = x$. +\end{axiom} + +\begin{axiom}\label{addition_axiom_2} + For all $x, y \in \naturals$ $x + \suc{y} = \suc{x} + y = \suc{x+y}$. +\end{axiom} + +\begin{lemma}\label{naturals_is_equal_to_two_times_naturals} + $\{x+y \mid x \in \naturals, y \in \naturals \} = \naturals$. +\end{lemma} + + + + + + + + + + + + + |
