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 ∈ β„•

 β‚™
 ⋃ Aα΅’ = βΏβ‹ƒα΅’β‚Œβ‚ Aα΅’ = α΅’β‚Œβ‚β‹ƒβΏ Aα΅’
ⁱ⁼¹
 β‚™
 β‹‚ Aα΅’ = βΏβ‹‚α΅’β‚Œβ‚ Aα΅’ = α΅’β‚Œβ‚β‹‚βΏ Aα΅’
ⁱ⁼¹

Last updated