Skip to content

Commit

Permalink
Set: add axiom saying that sets are non-empty (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
fblanqui authored Jan 31, 2025
1 parent 1fff6f4 commit 2a4794a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Impred: Set constructor o for quantifying over propositions
- Epsilon: Hilbert's ε operator
- List: add iota and indexes
- Set: add ι:Set
- Set: add ι:Set and an axiom el:Π a,τ a saying that every set is non-empty
- Pos, Z: add printing to decimal notation

### Changed
Expand Down
4 changes: 4 additions & 0 deletions Set.lp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ injective symbol τ : Set → TYPE; // `t or \tau

builtin "T" ≔ τ;

// We assume that sets are non-empty

symbol el a : τ a;

// Cartesian product

constant symbol × : Set → Set → Set; notation × infix right 10; // \times
Expand Down

0 comments on commit 2a4794a

Please sign in to comment.