Menu Top
Complete Course of Mathematics
Topic 1: Numbers & Numerical Applications Topic 2: Algebra Topic 3: Quantitative Aptitude
Topic 4: Geometry Topic 5: Construction Topic 6: Coordinate Geometry
Topic 7: Mensuration Topic 8: Trigonometry Topic 9: Sets, Relations & Functions
Topic 10: Calculus Topic 11: Mathematical Reasoning Topic 12: Vectors & Three-Dimensional Geometry
Topic 13: Linear Programming Topic 14: Index Numbers & Time-Based Data Topic 15: Financial Mathematics
Topic 16: Statistics & Probability


Content On This Page
Types of Sets (Empty, Finite, Infinite, Singleton, Equal, Equivalent) Cardinal Number of a Finite Set Subsets and Superset
Power Set Universal Set Intervals as Subsets of Real Numbers


Sets: Types and Cardinality



Types of Sets (Empty, Finite, Infinite, Singleton, Equal, Equivalent)

Sets can be classified into various types based on the number of elements they contain, their comparison with other sets, and other properties. Understanding these types is essential for working with sets effectively.


1. Empty Set (Null Set or Void Set)

An empty set is a set that contains no elements at all. It is the unique set with zero elements.

Notation:

The empty set is denoted by the symbol $\emptyset$ (read as "phi" or "the empty set") or by a pair of empty curly braces, $\{\}$.

Important Considerations:


Example 1. Determine which of the following are examples of the empty set:

(i) Set of all natural numbers less than 1.

(ii) Set of boys in a girls' school.

(iii) $\{x \in \mathbb{Z} \mid x^2 = 2\}$

(iv) $\{x \in \mathbb{N} \mid 5 < x < 6\}$

(v) $\{x \mid x \text{ is a point common to two parallel lines}\}$

Answer:

  • (i) The set of natural numbers is $\{1, 2, 3, ...\}$. There are no natural numbers less than 1. So, this set has no elements. It is the empty set, $\emptyset$.
  • (ii) In a girls' school, by definition, there are no boys. So, this set has no elements. It is the empty set, $\emptyset$.
  • (iii) We are looking for an integer $x$ such that $x^2 = 2$. The solutions to $x^2 = 2$ are $x = \sqrt{2}$ and $x = -\sqrt{2}$. Neither $\sqrt{2}$ nor $-\sqrt{2}$ are integers ($\sqrt{2}$ is irrational). Therefore, there is no integer $x$ satisfying $x^2 = 2$. This set has no elements. It is the empty set, $\emptyset$.
  • (iv) We are looking for a natural number $x$ such that $x$ is strictly greater than 5 and strictly less than 6. The natural numbers are $1, 2, 3, 4, 5, 6, 7, ...$. There is no natural number between 5 and 6. This set has no elements. It is the empty set, $\emptyset$.
  • (v) By definition, two parallel lines in a plane never intersect. Therefore, there are no points that are common to both lines. This set has no elements. It is the empty set, $\emptyset$.

All the given sets are examples of the empty set.


2. Finite Set

A set is called a finite set if it is either the empty set or if its elements can be counted using a process that eventually comes to an end. In other words, a finite set has a definite, limited number of elements.

Examples:


3. Infinite Set

A set that is not finite is called an infinite set. It contains an unlimited number of elements, and the process of counting its elements would never come to an end.

Examples:

Distinguishing Finite and Infinite Sets:

Sometimes, a set defined by a property might seem simple but turns out to be infinite. For example, the set of all points on the circumference of a circle is an infinite set.


4. Singleton Set (Unit Set)

A set containing exactly one element is called a singleton set or a unit set.

Examples:


5. Equal Sets

Two sets $A$ and $B$ are said to be equal if and only if they contain exactly the same elements. If two sets are equal, we write $A = B$. Otherwise, we write $A \neq B$.

Condition for Equality:

Set $A$ is equal to set $B$ ($A = B$) if and only if every element of $A$ is an element of $B$, and every element of $B$ is an element of $A$.


Example 2. Are the sets $A = \{c, a, r, e\}$ and $B = \{r, a, c, e\}$ equal?

Answer:

Given: $A = \{c, a, r, e\}$ and $B = \{r, a, c, e\}$.

To Determine: Are A and B equal?

Solution:

The elements of set A are c, a, r, e. The elements of set B are r, a, c, e.

Comparing the elements:

  • Is 'c' in A? Yes. Is 'c' in B? Yes.
  • Is 'a' in A? Yes. Is 'a' in B? Yes.
  • Is 'r' in A? Yes. Is 'r' in B? Yes.
  • Is 'e' in A? Yes. Is 'e' in B? Yes.

Every element of A is in B. Also, checking from B to A:

  • Is 'r' in B? Yes. Is 'r' in A? Yes.
  • Is 'a' in B? Yes. Is 'a' in A? Yes.
  • Is 'c' in B? Yes. Is 'c' in A? Yes.
  • Is 'e' in B? Yes. Is 'e' in A? Yes.

Every element of B is in A.

Since sets A and B have exactly the same elements, they are equal.

$A = B$.

(Note that the order of elements within the curly braces does not matter for sets).


Example 3. Are the sets $C = \{x \in \mathbb{Z}^+ \mid x < 4\}$ and $D = \{x \in \mathbb{W} \mid x^2 - 4x + 3 = 0\}$ equal?

Answer:

Given: $C = \{x \in \mathbb{Z}^+ \mid x < 4\}$ and $D = \{x \in \mathbb{W} \mid x^2 - 4x + 3 = 0\}$.

To Determine: Are C and D equal?

Solution:

First, let's find the elements of set C.

Set C contains positive integers ($\mathbb{Z}^+$) that are less than 4. Positive integers are $\{1, 2, 3, 4, ...\}$. The positive integers less than 4 are 1, 2, and 3.

$C = \{1, 2, 3\}$.

Next, let's find the elements of set D.

Set D contains whole numbers ($\mathbb{W}$) that are solutions to the quadratic equation $x^2 - 4x + 3 = 0$.

We can solve the quadratic equation by factoring:

$x^2 - 4x + 3 = 0$

$x^2 - 3x - x + 3 = 0$

$x(x - 3) - 1(x - 3) = 0$

$(x - 1)(x - 3) = 0$

This gives two possible solutions for $x$: $x - 1 = 0 \implies x = 1$ or $x - 3 = 0 \implies x = 3$.

Both 1 and 3 are whole numbers ($\mathbb{W} = \{0, 1, 2, 3, ...\}$).

So, the elements of set D are 1 and 3.

$D = \{1, 3\}$.

Comparing sets C and D:

$C = \{1, 2, 3\}$

$D = \{1, 3\}$

Set C contains the element 2, but set D does not. The sets do not have exactly the same elements.

Therefore, $C \neq D$.


6. Equivalent Sets

Two finite sets $A$ and $B$ are said to be equivalent if they have the same number of elements. Equivalence is about the size of the sets, not the identity of the elements.

Condition for Equivalence:

Set $A$ is equivalent to set $B$ if their cardinal numbers are equal.

$A \text{ is equivalent to } B \iff |A| = |B|$

Equivalence is sometimes denoted by the symbol $\sim$ or $\leftrightarrow$. For example, $A \sim B$ or $A \leftrightarrow B$ means set A is equivalent to set B.

Distinction between Equal Sets and Equivalent Sets:

Think of it like two groups of people. If the groups are equal, they contain the exact same individuals. If the groups are equivalent, they just have the same headcount, but the individuals might be different.


Example 4. Let $A = \{ \text{Mango, Apple, Orange} \}$ and $B = \{ \text{Chair, Table, Bed} \}$. Are sets A and B equal? Are they equivalent?

Answer:

Given: $A = \{ \text{Mango, Apple, Orange} \}$ and $B = \{ \text{Chair, Table, Bed} \}$.

To Determine: Are A and B equal? Are they equivalent?

Solution:

Equality:

Set A contains names of fruits. Set B contains names of furniture items. The elements of set A are different from the elements of set B. They do not have exactly the same elements.

Therefore, $A \neq B$.

Equivalence:

Let's find the number of elements in each set (their cardinal numbers).

Set A: $\{ \text{Mango, Apple, Orange} \}$. The number of elements is 3.

$|A| = 3$

Set B: $\{ \text{Chair, Table, Bed} \}$. The number of elements is 3.

$|B| = 3$

Since $|A| = |B|$ (both are 3), the sets A and B have the same number of elements.

Therefore, sets A and B are equivalent.

This example illustrates that sets can be equivalent without being equal.


Cardinal Number of a Finite Set

The cardinal number, also known as the cardinality, of a finite set is a measure of the "size" of the set. It represents the count of the distinct elements contained within the set.

Definition:

For a finite set $A$, its cardinal number is the number of distinct elements in $A$.

Notation:

The cardinal number of a set $A$ is commonly denoted by $n(A)$ or $|A|$.

Key Points:


Example 1. Find the cardinal number of the following sets:

(i) $S = \{\text{M, I, S, S, I, S, S, I, P, P, I}\}$

(ii) $B = \{x \in \mathbb{W} \mid x < 5\}$

(iii) $E = \{x \mid x \text{ is a prime number and } x \text{ is even}\}$

(iv) $M = \{\text{January, February, March, ..., December}\}$

Answer:

  • (i) $S = \{\text{M, I, S, S, I, S, S, I, P, P, I}\}$. To find the cardinal number, we must first identify the distinct elements. The distinct letters are M, I, S, P.

    The set of distinct elements is $\{M, I, S, P\}$.

    Counting the distinct elements, we get 4.

    $n(S) = |S| = 4$

  • (ii) $B = \{x \in \mathbb{W} \mid x < 5\}$. Set B contains whole numbers ($\mathbb{W}$) that are less than 5. The whole numbers are $\{0, 1, 2, 3, 4, 5, ...\}$. The whole numbers less than 5 are 0, 1, 2, 3, 4.

    The set in Roster Form is $B = \{0, 1, 2, 3, 4\}$.

    Counting the elements in B, we get 5.

    $n(B) = |B| = 5$

  • (iii) $E = \{x \mid x \text{ is a prime number and } x \text{ is even}\}$. We need prime numbers that are also even. Recall that a prime number is a natural number greater than 1 with no positive divisors other than 1 and itself. The only even number that fits this description is 2. All other even numbers ($4, 6, 8, ...$) are divisible by 2 and hence are not prime.

    The set E contains only one element, which is 2.

    $E = \{2\}$

    This is a singleton set. Its cardinal number is 1.

    $n(E) = |E| = 1$

  • (iv) $M = \{\text{January, February, March, ..., December}\}$. This set contains the names of the months in a standard calendar year. There are 12 months in a year.

    The number of elements in M is 12.

    $n(M) = |M| = 12$


Summary for Competitive Exams

Types of Sets:

  • Empty Set ($\emptyset$ or $\{\}$): Contains no elements. $| \emptyset | = 0$.
  • Finite Set: Has a countable, definite number of elements (including 0). Counting terminates.
  • Infinite Set: Not finite. Counting does not terminate. Examples: $\mathbb{N}, \mathbb{Z}, \mathbb{Q}, \mathbb{R}$.
  • Singleton Set: Contains exactly one element. $|A|=1$. Example: $\{5\}, \{\emptyset\}$.

Comparing Sets:

  • Equal Sets ($A=B$): Have exactly the same elements. $A \subseteq B$ and $B \subseteq A$. Order and repetition don't matter.
  • Equivalent Sets ($A \sim B$): Two finite sets having the same number of elements. $|A| = |B|$.

Relationship: Equal sets are always equivalent. Equivalent sets are not necessarily equal.

Cardinal Number ($n(A)$ or $|A|$): The number of distinct elements in a finite set A.

  • $n(\emptyset) = 0$.
  • For finite sets, $|A|=|B|$ means A and B are equivalent.


Subsets and Superset

Comparing sets based on their elements gives rise to the concepts of subsets and supersets. These concepts describe relationships where all elements of one set are also found in another set.


Subset ($\subseteq$)

A set $A$ is said to be a subset of a set $B$ if every element that is in set $A$ is also an element of set $B$.

Notation:

We denote that $A$ is a subset of $B$ by writing $A \subseteq B$. This notation is read as "$A$ is a subset of $B$", "$A$ is contained in $B$", or "$A$ is included in $B$".

If $A$ is not a subset of $B$, it means there is at least one element in set $A$ that is not in set $B$. We denote this by $A \not\subseteq B$.

Formal Definition:

$A \subseteq B \iff (\forall x, x \in A \implies x \in B)$

(For all elements $x$, if $x$ is in $A$, then $x$ is also in $B$).

Key Properties of Subsets:


Superset ($\supseteq$)

The term superset is simply the reverse relationship of a subset. If $A$ is a subset of $B$ ($A \subseteq B$), then $B$ is called a superset of $A$.

Notation:

We denote that $B$ is a superset of $A$ by writing $B \supseteq A$. This notation is read as "$B$ is a superset of $A$" or "$B$ contains $A$".

Equivalence:

The statement $A \subseteq B$ is completely equivalent to the statement $B \supseteq A$. They express the same relationship between the two sets from different perspectives.

$A \subseteq B \iff B \supseteq A$


Proper Subset ($\subset$ or $\subsetneq$)

A set $A$ is called a proper subset of a set $B$ if $A$ is a subset of $B$ ($A \subseteq B$) and $A$ is not equal to $B$ ($A \neq B$). This means that all elements of $A$ are in $B$, but $B$ contains at least one element that is not in $A$.

Notation:

There are two common notations for proper subsets:

We will use the notation $A \subset B$ to denote a proper subset.

Formal Definition:

$A \subset B \iff (A \subseteq B \text{ and } A \neq B)$

An equivalent way to state the condition for a proper subset is:

$A \subset B \iff (\forall x, x \in A \implies x \in B) \text{ and } (\exists y \in B \text{ such that } y \notin A)$

(Every element of A is in B, AND there exists at least one element y in B such that y is not in A).

Key Properties of Proper Subsets:


Example 1. Let $A = \{a, b\}$, $B = \{a, b, c\}$, $C = \{b, a\}$, and $D = \{a, d\}$. Determine the relationship ($\subseteq, \subset, =$) between these sets.

Answer:

Given: $A = \{a, b\}$, $B = \{a, b, c\}$, $C = \{b, a\}$, $D = \{a, d\}$.

To Determine: Relationships between pairs of these sets.

Solution:

  • Comparing A and B:

    Elements of A are $a, b$. Both $a \in B$ and $b \in B$. So, every element of A is in B, which means $A \subseteq B$.

    Element $c$ is in B, but $c \notin A$. So, $A \neq B$.

    Since $A \subseteq B$ and $A \neq B$, A is a proper subset of B: $A \subset B$.

    Also, B is a superset of A: $B \supseteq A$.

  • Comparing A and C:

    Elements of A are $a, b$. Elements of C are $b, a$. Since the order does not matter in sets, the elements are exactly the same.

    Therefore, $A = C$.

    (As $A=C$, $A \subseteq C$ and $C \subseteq A$. Neither is a proper subset of the other, i.e., $A \not\subset C$ and $C \not\subset A$).

  • Comparing A and D:

    Element $a$ is in A and also in D. However, element $b$ is in A but $b \notin D$. Since there is an element in A (which is $b$) that is not in D, A is not a subset of D.

    $A \not\subseteq D$.

    Similarly, element $d$ is in D, but $d \notin A$. So, D is not a subset of A.

    $D \not\subseteq A$.

    (Note: These sets are not equal, as their elements are different.)

  • Comparing B and C:

    Since $A = C$ and we found $A \subset B$, it directly follows that $C \subset B$.

    (Alternatively, Elements of C are $b, a$. Both $b \in B$ and $a \in B$. So, $C \subseteq B$. Element $c$ is in B, but $c \notin C$. So, $C \neq B$. Thus, $C \subset B$.)


Distinction between 'Element of' ($\in$) and 'Subset of' ($\subseteq$)

It is crucial to understand and correctly use the symbols $\in$ and $\subseteq$. They represent fundamentally different relationships:

Example:

Let $S = \{1, \{2, 3\}, 4\}$. This set $S$ has three elements: the number 1, the set $\{2, 3\}$, and the number 4.

Understanding this distinction is vital for avoiding common mistakes in set theory problems.


Power Set

The power set of a given set is a collection that brings together all the possible subsets of that set. It's a way of forming a new set whose elements are themselves sets.

Definition of Power Set

The power set of a set $A$ is the set containing all possible subsets of $A$.

Notation:

The power set of set $A$ is commonly denoted by $P(A)$ or $\mathcal{P}(A)$.

Key Characteristics:


Cardinality of the Power Set

If a finite set $A$ has $n$ elements, i.e., its cardinality is $n$ ($|A| = n$), then the number of elements in its power set $P(A)$ is $2$ raised to the power of $n$.

$|P(A)| = 2^{|A|} = 2^n$

Reasoning for the Cardinality Formula:

Consider a set $A = \{a_1, a_2, ..., a_n\}$ with $n$ elements. To form any subset of $A$, we go through each element of $A$ and decide whether to include it in the subset or not.

Since there are $n$ elements and 2 independent choices for each element, the total number of ways to make these choices is $2 \times 2 \times ... \times 2$ (repeated $n$ times).

Total number of subsets = $\underbrace{2 \times 2 \times \cdots \times 2}_{n \text{ times}} = 2^n$

Each distinct combination of these choices forms a unique subset of $A$. Therefore, the total number of subsets is $2^n$, which is the cardinality of the power set.


Example 1. Find the power set of $A = \{x, y, z\}$.

Answer:

Given: Set $A = \{x, y, z\}$.

To Find: The power set $P(A)$.

Solution:

First, find the cardinality of A. $|A| = 3$.

The number of elements in the power set $P(A)$ will be $2^{|A|} = 2^3 = 8$.

Now, let's list all possible subsets of A:

  • Subsets with 0 elements: The empty set, $\emptyset$.
  • Subsets with 1 element: $\{x\}$, $\{y\}$, $\{z\}$.
  • Subsets with 2 elements: $\{x, y\}$, $\{x, z\}$, $\{y, z\}$.
  • Subsets with 3 elements: The set A itself, $\{x, y, z\}$.

Collecting all these subsets as elements of $P(A)$:

$P(A) = \{ \emptyset, \{x\}, \{y\}, \{z\}, \{x, y\}, \{x, z\}, \{y, z\}, \{x, y, z\} \}$

Counting the elements in $P(A)$, we find there are indeed 8 elements, confirming our formula result.


Example 2. If $A = \{1, \{2\}\}$, find $P(A)$.

Answer:

Given: Set $A = \{1, \{2\}\}$.

To Find: The power set $P(A)$.

Solution:

First, find the cardinality of A. The elements of A are 1 and $\{2\}$. Note that $\{2\}$ is a single element here, a set treated as an element of A.

$|A| = 2$.

The number of elements in the power set $P(A)$ will be $2^{|A|} = 2^2 = 4$.

Now, let's list all possible subsets of A:

  • Subset with 0 elements: $\emptyset$.
  • Subsets with 1 element: $\{1\}$ and $\{\{2\}\}$ (This is a set containing the set $\{2\}$).
  • Subset with 2 elements: The set A itself, $\{1, \{2\}\}$.

Collecting all these subsets as elements of $P(A)$:

$P(A) = \{ \emptyset, \{1\}, \{\{2\}\}, \{1, \{2\}\} \}$

Counting the elements in $P(A)$, we find there are 4 elements, as expected.


Summary for Competitive Exams

Subset ($A \subseteq B$): Every element of A is in B. ($x \in A \implies x \in B$).

  • $A \subseteq A$ (Every set is a subset of itself).
  • $\emptyset \subseteq A$ (Empty set is a subset of every set).
  • $A=B \iff A \subseteq B$ and $B \subseteq A$.

Superset ($B \supseteq A$): B contains A ($A \subseteq B$).

Proper Subset ($A \subset B$): $A \subseteq B$ and $A \neq B$. (Every element of A is in B, AND there's at least one element in B not in A).

  • $\emptyset \subset B$ for any non-empty set B.
  • $A \not\subset A$.

Distinction $\in$ vs $\subseteq$: $\in$ relates element to set; $\subseteq$ relates set to set.

Power Set ($P(A)$ or $\mathcal{P}(A)$): The set of all subsets of A.

  • Elements of $P(A)$ are subsets of A.
  • $\emptyset \in P(A)$ and $A \in P(A)$.
  • Cardinality: If $|A| = n$, then $|P(A)| = 2^n$.


Universal Set

When working with sets in a particular context, it is often helpful to define a larger set that encompasses all the elements being discussed or considered in that specific problem or domain. This overarching set is known as the universal set.

Definition of Universal Set

A universal set is a set that contains all the elements relevant to a particular context or discussion. It is the basic set within which all other sets in that context are considered. The universal set is not fixed; its definition depends entirely on the specific problem or area of mathematics being studied.

Notation:

The universal set is commonly denoted by the capital letter $U$. Sometimes, especially in certain fields like probability or statistics, the Greek letter $\xi$ (xi) or $\Omega$ (Omega) might be used.

Relationship to Other Sets:

By definition, any set $A$ being discussed within a specific context is considered a subset of the universal set defined for that context.

If $A$ is any set under consideration, then $A \subseteq U$

The universal set serves as the frame of reference for all other sets in a given problem.


Examples Illustrating the Context-Dependent Nature of the Universal Set:

The universal set provides the boundaries for our operations and definitions within a given problem. Its clear definition is particularly important when discussing concepts like the complement of a set.


Summary for Competitive Exams

Universal Set ($U$ or $\xi$): The largest set relevant to a particular discussion or problem, containing all elements under consideration. All other sets in the context are subsets of $U$. The definition of $U$ is context-dependent.


Intervals as Subsets of Real Numbers

Intervals are a specific type of subset of the set of real numbers ($\mathbb{R}$). They represent a continuous range of real numbers on the number line between two given points, which are called the endpoints of the interval. Intervals are widely used in calculus, inequalities, and analysis.

Types of Finite Intervals

Let $a$ and $b$ be two real numbers such that $a < b$. We can define four types of finite intervals using $a$ and $b$ as endpoints:

  1. Open Interval: $(a, b)$

    • Set-Builder Notation: $\{x \in \mathbb{R} \mid a < x < b\}$
    • Description: This interval includes all real numbers that are strictly greater than $a$ and strictly less than $b$. The endpoints $a$ and $b$ are not included in the interval.
    • Number Line Representation: On a number line, this is shown with open circles (or parentheses) at the endpoints $a$ and $b$, indicating that the points themselves are excluded, and a shaded line between them.
      Number line showing open interval (a, b)
      (Imagine an image showing a number line with points 'a' and 'b', open circles at 'a' and 'b', and the segment between 'a' and 'b' shaded.)
  2. Closed Interval: $[a, b]$

    • Set-Builder Notation: $\{x \in \mathbb{R} \mid a \le x \le b\}$
    • Description: This interval includes all real numbers that are greater than or equal to $a$ and less than or equal to $b$. Both endpoints $a$ and $b$ are included in the interval.
    • Number Line Representation: On a number line, this is shown with closed (filled) circles (or square brackets) at the endpoints $a$ and $b$, indicating that the points themselves are included, and a shaded line between them.
      Number line showing closed interval [a, b]
      (Imagine an image showing a number line with points 'a' and 'b', closed circles at 'a' and 'b', and the segment between 'a' and 'b' shaded.)
  3. Semi-open (or Semi-closed) Intervals:

    • $[a, b)$: Includes $a$ but excludes $b$.
      Set-Builder Notation:
      $\{x \in \mathbb{R} \mid a \le x < b\}$
      Description:
      Real numbers greater than or equal to $a$ and strictly less than $b$. Endpoint $a$ is included, $b$ is excluded.
      Number Line:
      Number line showing semi-open interval [a, b)
      (Imagine a number line with a closed circle at 'a', an open circle at 'b', and shading between them.)
    • $(a, b]$: Excludes $a$ but includes $b$.
      Set-Builder Notation:
      $\{x \in \mathbb{R} \mid a < x \le b\}$
      Description:
      Real numbers strictly greater than $a$ and less than or equal to $b$. Endpoint $a$ is excluded, $b$ is included.
      Number Line:
      Number line showing semi-open interval (a, b]
      (Imagine a number line with an open circle at 'a', a closed circle at 'b', and shading between them.)

The length of any of these finite intervals $(a, b)$, $[a, b]$, $[a, b)$, or $(a, b]$ is given by the difference between the endpoints, which is $b - a$.


Types of Infinite Intervals

Intervals can also extend infinitely in one or both directions along the real number line. We use the symbols $\infty$ (positive infinity) and $-\infty$ (negative infinity) to represent these unbounded directions. Note that $\infty$ and $-\infty$ are not real numbers themselves, so they are always associated with an open bracket '('.


Example 1. Write the following sets as intervals:

(i) $\{x \in \mathbb{R} \mid -5 \le x < 2 \}$

(ii) $\{x \in \mathbb{R} \mid x > 3 \}$

(iii) $\{x \in \mathbb{R} \mid x \le 0 \}$

Answer:

  • (i) The condition is $-5 \le x < 2$. This means $x$ is greater than or equal to -5 (so -5 is included) and strictly less than 2 (so 2 is excluded). This is a semi-closed interval.

    The interval notation is $[-5, 2)$.

  • (ii) The condition is $x > 3$. This means $x$ is strictly greater than 3. The interval starts just after 3 (3 is excluded) and extends infinitely towards positive infinity. This is an infinite open interval.

    The interval notation is $(3, \infty)$.

  • (iii) The condition is $x \le 0$. This means $x$ is less than or equal to 0. The interval includes 0 and extends infinitely towards negative infinity. This is an infinite closed interval on the right side.

    The interval notation is $(-\infty, 0]$.


Example 2. Write the interval $[-4, 7]$ in set-builder form and state whether its endpoints are included or excluded.

Answer:

The interval $[-4, 7]$ uses square brackets at both ends. This indicates that both endpoints are included.

The interval includes all real numbers $x$ that are greater than or equal to -4 and less than or equal to 7.

In set-builder form, this is written as:

$\{x \in \mathbb{R} \mid -4 \le x \le 7 \}$

The endpoints, -4 and 7, are included in the interval.


Summary for Competitive Exams

Universal Set ($U$ or $\xi$): The context-dependent set containing all elements under consideration. All other sets are subsets of $U$.

Intervals (Subsets of $\mathbb{R}$): Continuous ranges on the real number line.

  • Endpoints $a, b$ with $a < b$.
  • Open: $(a, b) = \{x \in \mathbb{R} \mid a < x < b\}$ (endpoints excluded).
  • Closed: $[a, b] = \{x \in \mathbb{R} \mid a \le x \le b\}$ (endpoints included).
  • Semi-open/closed: $[a, b) = \{x \in \mathbb{R} \mid a \le x < b\}$, $(a, b] = \{x \in \mathbb{R} \mid a < x \le b\}$.
  • Length of finite interval: $b-a$.
  • Infinite: $(a, \infty), [a, \infty), (-\infty, b), (-\infty, b], (-\infty, \infty) = \mathbb{R}$.
  • $\infty$ and $-\infty$ are never included (always use round brackets).