Associative Law of Sets - Definition, Explanation, and Examples edit

The associative law is a fundamental property of set operations which states that when performing the same operation multiple times, the grouping (or association) of sets does not affect the result.

Associative Law for Union edit

For any three sets A, B, and C:

(AB)C=A(BC)

This means that whether you first unite A and B and then unite the result with C, or first unite B and C and then unite the result with A, the final set is the same.

Example: Union edit

Let A={1,2} B={2,3} C={3,4}

Calculate (AB)C:

AB={1,2,3} (AB)C={1,2,3}{3,4}={1,2,3,4}

Calculate A(BC):

BC={2,3,4} A(BC)={1,2}{2,3,4}={1,2,3,4}

Both are equal:

(AB)C=A(BC)={1,2,3,4}

Associative Law for Intersection edit

Similarly, the intersection operation is associative:

(AB)C=A(BC)

This means that whether you first find the intersection of A and B, and then intersect with C, or first find the intersection of B and C, and then intersect with A, the final set is the same.

Example: Intersection edit

Let A={1,2,3} B={2,3,4} C={3,4,5}

Calculate (AB)C:

AB={2,3} (AB)C={2,3}{3,4,5}={3}

Calculate A(BC):

BC={3,4} A(BC)={1,2,3}{3,4}={3}

Both are equal:

(AB)C=A(BC)={3}

Summary edit

  • The associative law allows us to group sets in any way when performing unions or intersections without changing the result.
  • It simplifies complex expressions by removing the need to worry about parentheses.