Extended set operations
Union and itersection of two sets (where π€ is the universal set):
Union
Aβ βͺ Aβ = { x β π€. x β Aβ
β¨
x β Aβ }
Union via the set index:
Aβ
βͺ
Aβ = { x β π€.β
i β {1,2}. x β Aα΅’ }
Itersection
Aβ β© Aβ = { x β π€. x β Aβ
β§
x β Aβ }
Itersection via the set index:
Aβ
β©
Aβ = { x β π€.β
i β {1,2}. x β Aα΅’ }
So, the correspondance is:
βͺ : β¨ : βi (there is an index i)
β© : β§ : βi (for every index i)
Union/itersection of more then two sets use the big-ass union/itersection sign.
(i=1..n)
β
Aα΅’ = { x β π€. βi β {1..n}. x β Aα΅’ }(i=1..n)
β
Aα΅’ = { x β π€. βi β {1..n}. x β Aα΅’ }
where n β β
Last updated
Was this helpful?