Skip to content
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