Infinitary union combined with infinitary intersection

AI Thread Summary
The discussion focuses on the challenge of proving the equality of two set expressions involving infinite unions and intersections. The key point is to demonstrate that the union of intersections is a subset of the intersection of unions, and vice versa. To achieve this, one must utilize the properties of existential and universal quantifiers effectively. The discussion emphasizes the importance of breaking down the problem into manageable parts and applying logical reasoning to deduce the necessary relationships. Overall, the conversation highlights the mechanical nature of set theory proofs and encourages a systematic approach to solving such problems.
bert2612
Messages
4
Reaction score
0
I am struggling with combining infinite unions with infinite intersections, the problem i have is to show that, for Sets Aij where i,j \inN (N=Natural Numbers)
∞...∞
\bigcup ( \bigcap Aij)
i=0 j=0


is equal to
...∞
\bigcap{(\bigcupAih(i):h\inNN}
... i=0

please could someone point me in the right direction,
I can show that

∞...∞
\bigcup ( \bigcap Aij)
i=0 j=0

is a subset of
∞...∞
\bigcap ( \bigcup Aij)
i=0 j=0

however i am struggling with the function h(i) used in the above question to make the two sets equal
Thanks!
 
Physics news on Phys.org
If I'm reading that right, what you want to show is:

\bigcup _{i=0}^{\infty} \left(\bigcap_{j=0}^{\infty} A_{ij}\right) = \bigcap\left\{\bigcup_{i=0}^{\infty}A_{ih(i)}\ :\ h \in \mathbb{N}^{\mathbb{N}}\right\}

To show two sets are equal, you show that they are subsets of one another. To show something is a subset of something else, you take an arbitrary element of the first thing and show it belongs to the second thing: "x \in one set \Longrightarrow x \in other set." Now the questions are: (a) how do I use the assumption that x is in some set, and (b) how do I prove that x is in some set? For both question, the answer is to look at what the defining property of the set is. I.e. if A = \{x : \phi(x)\}, then "x \in A" is equivalent to "\phi(x)."

So to get you started, the first half of what you want to do is:

Assume: \exists i \in \mathbb{N}\ \forall j \in \mathbb{N}\ x \in A_{ij}

and Deduce: \forall h \in \mathbb{N}^{\mathbb{N}}\ \exists i \in \mathbb{N}\ x \in A_{ih(i)}

How do you deduce something of the form of what you want to deduce? It starts with a \forall, so you say, "let h\in \mathbb{N}^{\mathbb{N}}" be arbitrary. Then your goal is to find an i \in \mathbb{N} such that x\in A_{ih(i)}. Given such an h, which i should you choose? Well, look at your assumption to see if it gives you any suggestions: \exists i \in \mathbb{N} \dots. There's only one thing you can do with such an assumption: instantiate it. So let i^\ast be such that \forall j \in \mathbb{N}\ x\in A_{i^\ast j}. Does this i^\ast work for your purpose? You need to check, will x \in A_{i^\ast h(i^\ast)}? Yes, by choice of i^\ast, x \in A_{i^\ast j} for all j, in particular for j = h(i^\ast). So you're done (one half of the problem).

Normally I don't like to provide solutions, but I have given you half the solution here. What you should take away from this is that there is essentially no thinking involved, you just have to unpack the definitions and think about the standard ways to do things like:

  • Prove two sets are equal
  • Prove one set is a subset of another
  • Prove an implication
  • Use an assumption that has an existential quantifier
  • How to "update" what your given assumption is once you've eliminated an existential quantifier via an instantiation
  • Use an assumption that has a universal quantifier
  • Deal with a conclusion that has a universal quantifier
  • How to "update" what your goal is once you've eliminated a universal quantifier from the desired conculsion via a "let ... be arbitrary" type of statement.
  • Deal with a conclusion that has an existential quantifier
  • etc.

Just as everyone needs to learn basic, purely mechanical things like adding, subtracting, multiplying, and dividing so they can use these tools creatively to do some actual useful and interesting computations, one needs to learn the basic mechanics of dealing with sets, quantifiers, and logical connectives in order to do interesting, creative mathematics. The problem here is purely mechanical, so don't over think it. Rather, try to approach it very analytically and logically, break things down into definitions and routine steps and at some point you will just fly through them.
 
this helped a lot, thank you
 
I'm taking a look at intuitionistic propositional logic (IPL). Basically it exclude Double Negation Elimination (DNE) from the set of axiom schemas replacing it with Ex falso quodlibet: ⊥ → p for any proposition p (including both atomic and composite propositions). In IPL, for instance, the Law of Excluded Middle (LEM) p ∨ ¬p is no longer a theorem. My question: aside from the logic formal perspective, is IPL supposed to model/address some specific "kind of world" ? Thanks.
I was reading a Bachelor thesis on Peano Arithmetic (PA). PA has the following axioms (not including the induction schema): $$\begin{align} & (A1) ~~~~ \forall x \neg (x + 1 = 0) \nonumber \\ & (A2) ~~~~ \forall xy (x + 1 =y + 1 \to x = y) \nonumber \\ & (A3) ~~~~ \forall x (x + 0 = x) \nonumber \\ & (A4) ~~~~ \forall xy (x + (y +1) = (x + y ) + 1) \nonumber \\ & (A5) ~~~~ \forall x (x \cdot 0 = 0) \nonumber \\ & (A6) ~~~~ \forall xy (x \cdot (y + 1) = (x \cdot y) + x) \nonumber...
Back
Top