I would like to understand the functionality and intuition of performing an Arbitrary Union/Intersection on sets which contain sets, i.e their elements are sets. I would like some clarity on: A set(s) vs set(s) whose elements are sets.
$ G_1= \mathbb \{R\}, \ G_2= \mathbb \{Z\} \ G_3= \mathbb \{N\}\ $
Will: $ \bigcap_{i \in I}G_i = \varnothing$
I believe it to be so, because $ \bigcup_{i \in I} G_i = \{\mathbb R, \mathbb Z, \mathbb N\} $
Glad to be clarified on this concept.
If you write $$ G_1=\mathbb{N},\quad G_2=\mathbb{Z},\quad G_3=\mathbb{R} $$ then $G_1\cap G_2\cap G_3=\mathbb{N}$ and $G_1\cup G_2\cup G_3=\mathbb{R}$ simply because $\mathbb{N}\subset\mathbb{Z}\subset\mathbb{R}$.
On the other hand if you write $$ G_1=\{\mathbb{N}\},\quad G_2=\{\mathbb{Z}\},\quad G_3=\{\mathbb{R}\} $$ then $G_1\cap G_2\cap G_3=\emptyset$ and $G_1\cup G_2\cup G_3=\{\mathbb{N},\mathbb{Z},\mathbb{R}\}$.
The difference is in the idea that a set $A$ and a set whose only element is the set $A$ are two totally different things.