Problems from Union, intersection and complementary of intervals

Calculate the following sets, and say if they are intervals or not, and classify them,

  1. (1,8)[2,3]
  2. [5,9](2,23)
  3. (,57)(4,+)
See development and solution

Development:

  1. We calculate first the intersection, and then we will calculate the complementary of the result given. Observing the endpoints of the given intervals, we have the following order: 2<1<3<8

    So, we know that the values between 1 and 3 belong to both intervals, and therefore, they belong to the intersection. So the result of the intersection is: (1,8)[2,3]=[1,3) Now let's calculate the complementary of this interval: [1,3)=(,1)[3,+)

  2. We calculate first the complementary: [5,9]=(,5)(9,+) (2,23)=(,2][23,+)

    Then, as 23<5, the union is the entire R.

  3. We have: (,57)(4,+)=(,57)(4,+)

    But, as the complementary of the complementary is the same set, we have:

    (,57)(4,+)=(,57)(4,+)

    If we calculate the complementary: (,57)=[57,+)

    So finally, we calculate the intersection: [57,+)(4,+)=[57,+)

Solution:

  1. (,1)[3,+): it is not an interval, since it is the union of two intervals, both unbounded and one open and the other closed.

  2. R=(,+): it is an unbounded interval.

  3. [57,+): it is a closed interval, and unbounded above.
Hide solution and development
View theory