Question 977661
Combine the two sets to form one bigger set. 


A = {<font color="blue">l,o,v,e,y</font>}
B = {<font color="green">w,o,l,v,e,s</font>}


A U B = {<font color="blue">l,o,v,e,y</font>,<font color="green">w,o,l,v,e,s</font>}


-------------------------------------------------------


Now toss out any duplicates (l,o,v, & e are duplicates)

A U B = {<font color="blue">l,o,v,e,y</font>,<font color="green">w,<s>o</s>,<s>l</s>,<s>v</s>,<s>e</s>,s</font>}


A U B = {<font color="blue">l,o,v,e,y</font>,<font color="green">w,s</font>}

-------------------------------------------------------


Final Answer:


A U B = <font color="red">{ l,o,v,e,y,w,s }</font>