A. What is a Set?
A Set is a well-defined collection of distinct objects. "Well-defined" means there is an unambiguous rule that determines whether any given object belongs to the collection or not:
- Valid Set: "The vowels in the English alphabet" $\to \{a, e, i, o, u\}$ (Universal agreement).
- NOT a Set: "The collection of honest people in India" (Vague and subjective; no universal definition of "honest").
B. Two Forms of Representation:
- Roster / Tabular Form: Elements are listed explicitly separated by commas inside curly brackets $\{ \}$: $$V = \{a, e, i, o, u\}$$ *(Order does not matter, and elements are never repeated: $\{1, 2, 2, 3\} = \{1, 2, 3\}$)*.
- Set-Builder / Rule Form: A common characterizing property $P(x)$ shared by all elements is stated: $$A = \{x : x \in \mathbb{N} \text{ and } 3 < x \le 8\} = \{4, 5, 6, 7, 8\}$$