484 views

2 Answers

1 votes
1 votes

Symmetric difference or Boolean sum:

$A\triangle B / A\oplus B = \left\{x \ \mid x\in A  \ \text{or} \  x\in B \ \text{but}  \ x\notin A\cap B \right\}$

  • $A\triangle B = A\oplus B  = (A-B)\cup(B - A) $
  • $A\triangle B = A\oplus B =  (A\cup B) - (A\cap B) $

$a) \ A \oplus A = \phi.$

$\implies A\oplus A = (A - A)\cup (A -  A) = \phi \cup \phi = \phi$

$b) \ A \oplus \phi = A.$

$\implies A\oplus \phi = (A\cup\phi)  - (A\cap \phi) = A -  \phi = A$

$c) \ A \oplus U =  \ \sim A.$

$\implies A\oplus U = (A\cup U) - (A\cap U) = U - A= \  \sim A$

$d) \ A \oplus \sim A= U.$

$\implies A\oplus \sim A = (A\ \cup\sim A) -  (A \ \cap \sim A) = U - \phi = U$

edited by
0 votes
0 votes
A xor B = (A-B) union (B-A)

i. (A-A)UNION(A-A)=PHI UNION PHI= PHI . HENCE PROVED.

II. (A-PHI)UNION (PHI-A)= A UNION PHI = A

III. (A-U) UNION (U-A) = PHI UNION A' = A'

IV. (A-A') UNION (A' - A)= A UNION A' = U

Related questions

1 votes
1 votes
1 answer
2
1 votes
1 votes
2 answers
3
0 votes
0 votes
0 answers
4