Sets

Definition

A set is a collection of distinct elements. For example, the set of natural numbers less than 5 can be written as:

Universal Set

A universal set is a set that contains all the objects under consideration. For example, if we are discussing the set of all integers, then:

where represents the set of all integers.

Subset

A subset is a set where all its elements are also contained within another set. For example, if:

then:

is a subset of , which is written as:

Unions of Sets

The union of two sets and is a set containing all elements that are in either , , or both. For example:

The union of and is:

Intersection

The intersection of two sets and is a set containing all elements that are common to both and . For example:

The intersection of and is:

Set Difference

Let and Be two sets. They are non empty. Then the Symmetric difference is defined as Similarly, the set difference between and is:

Symmetric Difference

Let and be two non empty sets. Then the symmetric difference between and will be. Mathematically it can be represented with. Or

Powersets

The power set of a set ( S ) is the set of all possible subsets of ( S ), including the empty set and ( S ) itself. It is denoted by ( \mathcal{P}(S) ) or ( 2^S ).

Definition

If ( S ) is a set, then the power set of ( S ) is defined as:

This means that ( \mathcal{P}(S) ) contains every subset ( T ) such that ( T ) is a subset of ( S ).

Example

Let ( S = {a, b} ). The power set of ( S ) is:

Properties

  1. Cardinality: The number of elements in the power set is ( 2^n ), where ( n ) is the number of elements in ( S ). For instance, if ( S ) has 2 elements, the power set will have ( 2^2 = 4 ) elements.

  2. Inclusion: The empty set ( \emptyset ) and the set ( S ) itself are always included in the power set.

  3. Subset Relationship: Every subset of ( S ) is an element of ( \mathcal{P}(S) ).

LaTeX Representation

In LaTeX, the power set is represented as:

\documentclass{article}
\usepackage{amsmath}
 
\begin{document}
 
The power set of a set \( S \) is defined as:
$$
\mathcal{P}(S) = \{ T \mid T \subseteq S \}
$$
 
For example, if \( S = \{a, b\} \), then:
$$
\mathcal{P}(S) = \{ \emptyset, \{a\}, \{b\}, \{a, b\} \}
$$
 
If a set \( S \) has \( n \) elements, then the power set \( \mathcal{P}(S) \) has \( 2^n \) elements.
 
\end{document}

Cardinality of a Set

The cardinality of a set refers to the number of elements in the set. For a finite set, this is simply the count of elements within the set. The cardinality of a set ( A ) is denoted by ( |A| ).

Example

For a set ( A ) defined as:

The cardinality of ( A ) is:

This indicates that the set ( A ) contains 3 elements.

Partition

Let be a non-empty set. A partition of refers to the division of into disjoint subsets such that the union of these subsets reconstructs the original set .

In other words, a partition of is a collection of non-empty subsets such that:

  1. for all (the subsets are pairwise disjoint).
  2. (the union of all subsets equals the original set ).

Example

Consider the set . One possible partition of is:

Here, the subsets and are disjoint and their union is :

Properties of Sets

  1. Idempotent Laws

    • For any set :
  2. Domination Laws

    • For any set and the universal set :
  3. Complement Laws

    • For any set and its complement :
  4. De Morgan’s Laws

    • For any sets and :
  5. Distributive Laws

    • For any sets , , and :
  6. Associative Laws

    • For any sets , , and :
  7. Commutative Laws

    • For any sets and :

Cartesian Product

The Cartesian product of two sets is a fundamental concept in set theory and mathematics. It refers to the set of all possible ordered pairs that can be formed by taking one element from each of the sets.

Definition

If and are two sets, then the Cartesian product of and , denoted by , is defined as:

Here, represents an ordered pair where is an element from set and is an element from set .

Example

Consider the sets and . The Cartesian product is:

In this example, we form ordered pairs by pairing each element of with each element of .

Properties

  1. Order Matters: The Cartesian product is not the same as . For example, contains pairs where the first element is from and the second is from , while contains pairs where the first element is from and the second is from .

  2. Empty Set: If either or is an empty set, then their Cartesian product will also be empty. For instance, if , then for any set .

  3. Associativity: The Cartesian product is associative, meaning that for three sets , , and , the following holds:

However, the interpretation of the pairs differs.

  1. Number of Elements: If has elements and has elements, then will have elements.

LaTeX Representation

In LaTeX, the Cartesian product is represented as:

\documentclass{article}
\usepackage{amsmath}
 
\begin{document}
 
The Cartesian product of two sets \( A \) and \( B \) is defined as:
$$
A \times B = \{ (a, b) \mid a \in A \text{ and } b \in B \}
$$
 
For example, if \( A = \{1, 2\} \) and \( B = \{x, y\} \), then:
$$
A \times B = \{ (1, x), (1, y), (2, x), (2, y) \}
$$
 
\end{document}
 
## References