1

Consider a set $U$ that consists of ordered $n$-tuples. I want to prove that if $(x_1,\ldots,x_n)\in U$, then $U\neq x_i$ for every $i$. I know that an element cannot be element of itself as that creates an infinite descending chain of inclusions which cannot happen, but what about $n$-tuples?

I guess an argument for this one could be somewhat similar, but using projection maps $\pi_k:(x_i)_{i=1}^n\mapsto x_k$, noticing they are surjective and procceed by a cardinality argument. I also think $U$ may not be well-defined as for $U$ to be defined, any element in it must be defined and that requires, in turn, to define $U$, thus creating a contradiction. I don't think this argument is right but I think a proof could be found along those lines.

Anyways, I cannot come up with a proof nor with a contradiction. If any one could be of any help I would be greatly appreciated. Thanks.

Garmekain
  • 3,124
  • 13
  • 26
  • How do you define that $n$-tuple? Is it e.g. as ${{x_i|1\le i\le j}|1\le j\le n}$? If so, $U$ would be an element of an element of an element of itself, which contradicts certain axioms. – J.G. Sep 17 '22 at 18:28

1 Answers1

2

That's something possible, depending upon the set of axioms chosen.

Any demonstration that would use cardinal as a way to show this is impossible, is sure to fail: a definition of an infinite set is precisely that there exists an injection from that set to one of its proper subsets.

See Example of set which contains itself for the case of sets: a specific axiom, the axiom of foundation, is added to forbid sets that contain themselves. This page also refers a Wikipedia page where is described the anti-foundation axiom, the opposite of the foundation axiom - this shows maths can be done with another principle, although of course with surprising consequences.

With tuples, it may depend upon how you define them: tuples in maths are not a primary concept such as sets. It could be defined as:

  • An $n$-tuple of elements of $E$ is a function from $\mathbb{N}^n$ to $E$. The set of tuples on $E$ is then $T= \cup_{n=0}^\infty \{ \text{functions: } \mathbb{N}^n \to E\}$. With this definition, a tuple having itself as element would mean $E$ includes some part of $T$. We could try defining $f$ such that $f(E)=T$, and look for its fixed point. However what would be the domain and range of $f$? We would not choose the set of all sets, as it is prohibited in usual theories; there does not seem to be another simple choice.
  • A tuple of elements of $E$ is a finite subset of $E$ with a total order on that subset. Then, to have a tuple which includes itself, we would need a finite subset of $E$ that contains $E$ as an element, i.e $E$ is an element of itself, which is prohibited in usual theories.

So it seems that: if sets that contain themselves are prohibited, tuples that contain themselves are also prohibited.

In computer science, having objects that refer to themselves, directly or indirectly, is common. Example of constructing in Python an immutable object that refers to itself: https://stackoverflow.com/questions/11873448/building-self-referencing-tuples
There is also a common way of recursively defining an infinite object, such as $\mathbb{N}$, in languages such as Haskell which use lazy evaluation. It is as simple as:
nats :: [Int] nats = 0 : map (+1) nats
It says nats contains $0$, then a copy of itself with each element incremented by $1$.
This to show that programming languages can easily model math concepts as infinity or containing oneself, which we intuitively think as non applicable to real world objects.