find interior points, boundary points and closure

453 Views Asked by At

For the following cases, determine the interior points, boundary points and closure

S1 = {1} ∪ [2, 3] ∪ (4, 5) ⊆ R

Here's what I have so far:

int(S1) = all points in (4,5) ∪ (2,3)

bd(S1) = {1,2,3}

cl(S1) = int(S) ∪ bd(S) = {1,2,3} ∪ (4,5) ∪ (2,3)

Does that seem right? Is there some way we can define the closure to be more concise?

1

There are 1 best solutions below

4
On BEST ANSWER

Boundary is $\{1,2,3,4,5\}$ and closure is $\{1\} \cup [2,3] \cup [4,5]$.