Following set is given:
X := {Horse, Dog}
Y := {Cat}
I define the set:
M := Pow(X) u {Y}
u for union
The resulting set of the power set operation is:
Px := {0, {Horse}, {Dog}, {Horse, Dog}}
0 for empty set
My question is referenced to the unio operation. How do I unite 0 and Y?
M := {{Horse, Cat}, {Dog, Cat}, {Horse, Dog, Cat}}