I want to formally prove that $X\subseteq A\cap B\Leftrightarrow X\subseteq A\wedge X\subseteq B$. This means $\forall x(x\in X\Rightarrow x\in A\wedge x\in B)$. By the use of logic ($P\Rightarrow (Q\wedge R)\equiv (P\Rightarrow Q)\wedge(P\Rightarrow R)$) we get $$ \forall x((x\in X\Rightarrow x\in A)\wedge (x\in X\Rightarrow x\in B)). $$ How can we conclude that this implies $\forall x(x\in X\Rightarrow x\in A)\wedge \forall x(x\in X\Rightarrow x\in B)$ (which is $X\subseteq A\wedge X\subseteq B$)?
Asked
Active
Viewed 257 times
1 Answers
2
$$\forall x (F \wedge G) \vdash \dashv (\forall x (F))\wedge(\forall x(G))$$ So you already have what you need!
Just keep in mind that thiw is not the case with $\vee$ since $$\forall x (F \vee G) \not \vdash (\forall x (F))\vee(\forall x(G))$$

christina_g
- 150
- 1
- 2
- 13
-
1@Ivan: If you're not familiar with formal systems, just use common sense first. The first statement in this answer states that conjunction under a universal quantifier is equivalent to conjunction of the statements separately universally quantified. Why? Because if every object satisfies two properties $P,Q$, then surely every object satisfies $P$ and every object satisfies $Q$, and vice versa. This is obviously not the case for disjunction. Simple counter-example: everything is either a rock or not a rock, but that does not imply that either everything is a rock or everything is not a rock! – user21820 Mar 19 '16 at 17:13
-
1@Ivan: But you might benefit greatly from reading the books I recommend at http://math.stackexchange.com/a/1684208. – user21820 Mar 19 '16 at 17:15
by definition of the intersection, we have $(x\in A) \land (x\in B)$.
now consider the collection of all $x$ which fit this criteria
– homedoggieo Mar 18 '16 at 12:57