| Metamath Proof Explorer |
< Previous
Next >
Related theorems GIF version |
| Description: Define the equality
connective between classes. Definition 2.7 of
[Quine] p. 18. Also Definition 4.5 of
[TakeutiZaring] p. 13; Chapter 4
provides its justification and methods for eliminating it. Note that
its elimination will not necessarily result in a single wff in the
original language but possibly a "scheme" of wffs.
This is an example of a somewhat "risky" definition, meaning that it has a more complex than usual soundness justification (outside of Metamath), because it "overloads" or reuses the existing equality symbol rather than introducing a new symbol. This allows us to make statements that may not hold for the original symbol. For example, it permits us to deduce y = z ↔ ∀x(x ∈ y ↔ x ∈ z), which is not a theorem of logic but rather presupposes the Axiom of Extensionality. We therefore include this axiom as a hypothesis, so that the use of Extensionality is properly indicated. We could avoid this complication by introducing a new symbol, say =2, in place of =. This would also have the advantage of making elimination of the definition straightforward, so that we could eliminate Extensionality as a hypothesis. We would then also have the advantage of being able to identify in various proofs exactly where Extensionality truly comes into play rather than just being an artifact of a definition.. One of our theorems would then be x =2 y ↔ x = y by invoking Extensionality. However, to conform to literature usage, we retain this overloaded definition. This also makes some proofs shorter and probably easier to read, without the constant switching between two kinds of equality. See also comments under df-clab 1463, df-clel 1471, and abeq2 1566. |
| Ref | Expression |
|---|---|
| df-cleq.1 | ⊢ (∀x(x ∈ y ↔ x ∈ z) → y = z) |
| Ref | Expression |
|---|---|
| df-cleq | ⊢ (A = B ↔ ∀x(x ∈ A ↔ x ∈ B)) |
| Step | Hyp | Ref | Expression |
|---|---|---|---|
| 1 | cA | . . 3 class A | |
| 2 | cB | . . 3 class B | |
| 3 | 1, 2 | wceq 955 | . 2 wff A = B |
| 4 | vx | . . . . . 6 set x | |
| 5 | 4 | cv 954 | . . . . 5 class x |
| 6 | 5, 1 | wcel 957 | . . . 4 wff x ∈ A |
| 7 | 5, 2 | wcel 957 | . . . 4 wff x ∈ B |
| 8 | 6, 7 | wb 146 | . . 3 wff (x ∈ A ↔ x ∈ B) |
| 9 | 8, 4 | wal 953 | . 2 wff ∀x(x ∈ A ↔ x ∈ B) |
| 10 | 3, 9 | wb 146 | 1 wff (A = B ↔ ∀x(x ∈ A ↔ x ∈ B)) |
| Colors of variables: wff set class |
| This definition is referenced by: dfcleq 1469 |