A. What is a Set?
A Set is a well-defined collection of distinct objects:
- "Well-defined" Criterion: There must be an unambiguous, universal rule allowing anyone to decide definitively whether a specific object belongs to the collection or not.
- Valid Set: "The vowels in the English alphabet" $\to$ Definite collection $\{a, e, i, o, u\}$.
- NOT a Set: "The five most talented actors in India" $\to$ Subjective opinion; not well-defined!
- Elements / Members: The objects belonging to a set are called elements. If $x$ is an element of set $A$, we write $x \in A$ ("$x$ belongs to $A$"). If not, $x \notin A$.
- Elements are distinct (no duplicates) and the order of listing does not matter ($\{1, 2, 3\} = \\{3, 1, 2\}$).
B. The Three Methods of Representation:
- 1. Description Method: Stating the well-defined rule in words inside quotes or text (e.g., $A = \text{Set of prime numbers less than 10}$).
- 2. Roster / Tabular Form: Listing all elements explicitly, separated by commas, enclosed within curly braces $\{ \}$: $$A = \{2, 3, 5, 7\}$$
- 3. Set-Builder / Rule Form: Stating the characteristic property $P(x)$ shared by all elements: $$A = \{x : x \text{ is a prime number and } x < 10\}$$ (Read as: "The set of all $x$ such that $x$ is a prime number less than 10").