Skip to content

[ add ] obvious lemma about self-contradiction to Relation.Nullary.Negation.Core #2693

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,8 @@ Additions to existing modules
⊤-dec : Dec {a} ⊤
⊥-dec : Dec {a} ⊥
```

* In `Relation.Nullary.Negation.Core`:
```agda
contra-diagonal : (A → ¬ A) → ¬ A
```
5 changes: 5 additions & 0 deletions src/Relation/Nullary/Negation/Core.agda
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ contradiction₂ (inj₂ b) ¬a ¬b = contradiction b ¬b
contraposition : (A → B) → ¬ B → ¬ A
contraposition f ¬b a = contradiction (f a) ¬b

-- Self-contradictory propositions are false by 'diagonalisation'

contra-diagonal : (A → ¬ A) → ¬ A
contra-diagonal self a = self a a

-- Everything is stable in the double-negation monad.
stable : ¬ ¬ Stable A
stable ¬[¬¬a→a] = ¬[¬¬a→a] (contradiction (¬[¬¬a→a] ∘ const))
Expand Down