I managed to prove existence for the following theorem: $$\forall A\in\mathcal{P}(U)\ \exists!B\in\mathcal{P}(U)\ \forall C\in\mathcal{P}(U)\ (C\setminus A=C\cap B)$$ where U is any set. My assumption is that $B=U\setminus A$, and it works for existence, but I'm stuck with proving uniqueness part with $B$ being defined this way.
For uniqueness we need to prove $$\forall B'\in\mathcal{P}(U)\ \forall C\in\mathcal{P}(U)\ (\ (C\setminus A=C\cap B')\rightarrow B'=B)$$ where A is arbitrary element of $\mathcal{P}(U)$ but I don't how to connect $x\in B'$ or $x\in B$ to the assusmed identitiy $C\setminus A=C\cap B'$.
Any pointers are much appreciated.
EDIT
Here is my attempt of proof.
Proof: Let $A$ be an arbitrary element of $\mathcal{P}(U)$ and let $B=U\setminus A$.
Existence: Let $C$ be an arbitrary element of $\mathcal{P}(U)$. $(\rightarrow)$ Let $x$ be an arbitrary element of $C\setminus A$. Since $C\subseteq U$, then $x\in U\setminus A$. Therefore $x\in C\cap B$. $(\leftarrow)$ Let x be an arbitrary element of $C\cap B$. Then $x\in C\cap (U\setminus A)$, so we can conclude $x\in C\setminus A$.
Uniqueness: Let $B'$ be an arbitrary element of $\mathcal{P}(U)$ and suppose $\forall C\in\mathcal{P}(U)(C\setminus A=C\cap B')$.
$(B'\subseteq B)$ Since $B'\in\mathcal{P}(U)$, then in particular $B'\setminus A=B'\cap B'=B'$, so clearly $B'\cap A=B'\cap (U\setminus B)=\varnothing$. Then $\forall x(x\not\in B'\lor x\not\in U\lor x\in B)$, which is equivalent to $\forall x(x\in B'\cap U\rightarrow x\in B$). Since $B'\subseteq U$, $B'\cap U=B'$, we now have $\forall x(x\in B'\rightarrow x\in B)$, and therefore $B'\subseteq B$.
$(B\subseteq B')$ Let $C=B$. Then $B\setminus A=B\cap B'$, and because $B\cap A=\varnothing$, we have $B=B\cap B'$, so we can conclude $B\subseteq B'$.
I only have two quick follow ups:
A=U∖B: How did you know? I can prove it by proving ∀x(x∈A↔x∈U∖B), but I am sure you didn't do it this way, somehow I think you proved by deducing from the meaning of these formulae alone, I tried really hard but I still couldn't crack it, could you give me a hint please?
B∩A=∅: Is it because if B=U∖A then B∩A=U∖A ∩ A, i.e. ∀x(x∈U∧~x∈A∧x∈A), and ~x∈A∧x∈A implies nothing can satisfy this (and thus no member - empty set)?
Thank you so much! orz
– Constantly confused Apr 09 '16 at 15:07I tried to leave every step so you could follow the proof more easily. Note that the proof uses just basic set alebra (see Algebra of Sets). As for $B\cap A=\varnothing$, by applying set algebra, $$B\cap A=(U\setminus A)\cap A = U\cap A^C\cap A=U\cap\varnothing=\varnothing$$ which is similar to your approach, but avoids dealing with set elements.
– LavaScornedOven Apr 12 '16 at 10:17