0

While studying set theory, I confronted an exercise that encouraged me to prove that there does not exist a set $X$ such that $P(X) \subset X$. On the process of proving this exercise, I thought it is true that $X \in X$ cannot be occurred if $X$ is a set. The following is my proof.

pf) Suppose that there exists a set $X$ such that $X \in X$. Then $V=\{X : X \in X\}$ is a set. By the separation schema, there exists a set $S=\{x \in V : x \notin x\}$ becomes a set.

My question is this: Is $S$ the Russell's paradox? If not, can S become the Russell's paradox by changing the formula?

J.W.
  • 23
  • 3
    Why should $V$ be a set? – Kritiker der Elche Aug 04 '21 at 09:33
  • I assumed that to get a contradiction. – J.W. Aug 04 '21 at 09:38
  • Related: https://math.stackexchange.com/questions/162/why-is-the-set-of-all-sets-a-paradox-in-laymans-terms – Peter O. Aug 04 '21 at 09:47
  • 3
    @J.W. Every time you assume something, you weaken your proof. You want to only be assuming that $P(X) \subset X$ and deriving a contradiction. If you additionally assumed that $V$ was a set when deriving your contradiction, you have proved something weaker than you intended: you have proved that either $V$ is not a set, or that no such $X$ exists.

    In this case, I can guarantee you that $V$ is not a set because this is precisely the basis of Russel's paradox, so you actually assumed something false when you said that $V$ is a set - and if you assume something false you can prove anything!

    – Jack Crawford Aug 04 '21 at 09:50

1 Answers1

2

Your suggested proof is not going to work.

Firstly, since $X\notin X$ is true for all $X$, then $\{X\mid X\in X\}$ is empty and in particular it is a set. Since the empty class is a set.

Secondly, you are defining $S$ as the subset of $\{X\mid X\in X\}$ of those elements satisfying $X\notin X$. So an element of $S$ is both an element of itself and not. Since exactly one of these can be true, even if some $X$ was an element of itself, $S$ is always empty.

Finally, you're not really proving that $\mathcal P(X)$ is not a subet of $X$. You're going a step further. But that's actually a point of failure here. In $\sf ZFC$, which is the standard set theory we use, we can prove that $X\notin X$ is true for all $X$ by using the Axiom of Regularity (also known as Axiom of Foundation). But in a naive setting, we don't usually assume the Axiom of Regularity.

And indeed, it is consistent that all the axioms of $\sf ZF$ except the Axiom of Regularity hold, but there is a set that contains itself. In fact, it is consistent that the collection $\{X\mid X\in X\}$ is not even a set! So, does that mean that in those cases you could have $\mathcal P(X)\subseteq X$? Not quite. But it gives you a hint that using $X\notin X$ is probably not the correct approach here.

The idea is to relativise Russell's paradox to $X$. Namely, consider $B=\{x\in X\mid x\notin x\}$ and then prove that $B\notin X$. But since $B\subseteq X$ by definition, that shows that $\mathcal P(X)\nsubseteq X$ after all. (Note that if we assume $\sf ZFC$, then indeed $B=X$, and we get $X\notin X$.)

Let me add that some set theories restrict the formulas that define subsets, rather than requiring that a collection of sets is a set if it was "carved out a pre-existing set". For example, Quine's New Foundations; Positive set theory; and others. In those set theories, $x\notin x$ is not a valid formula for defining subsets, so $B$ is actually not a set.


Further reading:

  1. Why is “the set of all sets” a paradox, in Layman's terms?
  2. If $S=\{x:x\in x\}$, is $S\in S$ knowable? (Naive set theory)
  3. New Foundations
  4. Positive set theory
Asaf Karagila
  • 393,674
  • Actually, I wanted to prove this exercise by only using the axioms of ZF except for the axiom of regularity. Also, after watching the axiom of regularity seriously, I could easily show that such $X$ is not a set by the axiom of regularity. I think the proof that you presented me is what I wanted. Thank you. – J.W. Aug 05 '21 at 07:45