Question 1033530
Problem: 
Write the following in set roster notation : the set of
p of even numbers between 10 and 15 inclusive. 
---------------------------------------------------
Roster Notation is essentially notation that lists out EVERY member of the set. 
This means we simply list out the even numbers from 10 to 15, which are 10,12,14


Answer: <font color=red>{10, 12, 14}</font>



==============================================================================
==============================================================================



Problem:
Let u =(a,b,c,d,e,f,g),A=(a,b,c), B=(c,d) find AuB 
---------------------------------------------------
A = {a, b, c}
B = {c, d}
A U B = <font color=red>{a, b, c, d}</font>
Set union has us combining the two sets (A and B) and then tossing out duplicate elements.


Answer: <font color=red>{a, b, c, d}</font>