Analysis I, Section 3.2: Russell's paradox #
I have attempted to make the translation as faithful a paraphrasing as possible of the original text. When there is a choice between a more idiomatic Lean solution and a more faithful translation, I have generally chosen the latter. In particular, there will be places where the Lean code could be "golfed" to be more elegant and idiomatic, but I have consciously avoided doing so.
This section is mostly optional, though it does make explicit the axiom of foundation which is used in a minor role in an exercise in Section 3.5.
Main constructions and results of this section:
- Russell's paradox (ruling out the axiom of universal specification).
- The axiom of regularity (foundation) - an axiom designed to avoid Russell's paradox.
Tips from past users #
Users of the companion who have completed the exercises in this section are welcome to send their tips for future users in this section as PRs.
- (Add tip here)
Axiom 3.8 (Universal specification)
Equations
- Chapter3.axiom_of_universal_specification = ∀ (P : Chapter3.Object → Prop), ∃ (A : Chapter3.Set), ∀ (x : Chapter3.Object), x ∈ A ↔ P x
Instances For
Exercise 3.2.1. The spirit of the exercise is to establish these results without using either Russell's paradox, or the empty set.
Exercise 3.2.1. The spirit of the exercise is to establish these results without using either Russell's paradox, or the singleton set.
Exercise 3.2.1. The spirit of the exercise is to establish these results without using either Russell's paradox, or the union operation.
Exercise 3.2.1. The spirit of the exercise is to establish these results without using either Russell's paradox, or the specify operation.
Exercise 3.2.1. The spirit of the exercise is to establish these results without using either Russell's paradox, or the replace operation.
Exercise 3.2.2
Exercise 3.2.2
Exercise 3.2.3