Created the Real Analysis Theorems and Definitions packet

This commit is contained in:
2024-01-09 13:01:34 -07:00
commit d19e454f27
65 changed files with 3114 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
\chapter{Preliminaries}
\subimport{./}{sets-and-functions.tex}
\subimport{./}{mathematical-induction.tex}
\subimport{./}{finite-and-infinite-sets.tex}
+89
View File
@@ -0,0 +1,89 @@
\section{Finite and Infinite Sets}
\begin{definition}
\begin{enumerate}
\item[]
\item The empty set $\emptyset$ is said to have $0$ \textbf{elements}.
\item If $n \in \N$, a set $S$ is said to have $n$ \textbf{elements} if there exists a bijection from the set $\N_n := \{1, 2, \dots, n\}$ onto $S$.
\item A set $S$ is said to be \textbf{finite} if it is either empty or it has $n$ elements for some $n \in \N$.
\item A set $S$ is said to be \textbf{infinite} if it is not finite.
\end{enumerate}
\end{definition}
\begin{theorem}[\textbf{Uniqueness Theorem}]
If $S$ is a finite set, then the number of elements is $S$ is a unique number in $\N$.
\end{theorem}
\begin{theorem}
The set $\N$ of natural numbers is an infinite set.
\end{theorem}
\begin{theorem}
\begin{enumerate}
\item[]
\item If $A$ is a set with $m$ elements and $B$ is a set with $n$ elements and if $A \cap B = \emptyset$, then $A \cup B$ has $m +n$ elements.
\item If $A$ is a set with $m \in \N$ elements and $C \subseteq A$ is a set with $1$ element, then $A \setminus C$ is a set with $m-1$ elements.
\item If $C$ is an infinite set and $B$ is a finite set, then $C \setminus B$ is an infinite set.
\end{enumerate}
\end{theorem}
\begin{theorem}
Suppose that $S$ and $T$ are sets and that $T \subseteq S$.
\begin{enumerate}
\item If $S$ is a finite set, then $T$ is a finite set.
\item If $T$ is an infinite set, then $S$ is an infinite set.
\end{enumerate}
\end{theorem}
\begin{definition}
\begin{enumerate}
\item[]
\item A set $S$ is said to be \textbf{denumerable} (or \textbf{countably infinite}) if there exists a bijection of $\N$ onto $S$.
\item A set $S$ is said to be \textbf{countable} if it is either finite or denumerable.
\item A set $S$ is said to be \textbf{uncountable} if it is not countable.
\end{enumerate}
\end{definition}
\begin{theorem}
The set $\N \times \N$ is denumerable.
\end{theorem}
\begin{theorem}
Suppose that $S$ and $T$ are sets and that $T \subseteq S$.
\begin{enumerate}
\item If $S$ is a countable set, then $T$ is a countable set.
\item If $T$ is an uncountable set, then $S$ is an uncountable set.
\end{enumerate}
\end{theorem}
\begin{theorem}
The following statements are equivalent:
\begin{enumerate}
\item $S$ is a countable set.
\item There exists a surjection of $\N$ onto $S$.
\item There exists an injection of $S$ into $\N$.
\end{enumerate}
\end{theorem}
\begin{theorem}
The set $\Q$ of all rational numbers is denumerable.
\end{theorem}
\begin{theorem}
If $A_m$ is a countable set for each $m \in \N$, then the union $A:= \bigcup\limits_{m=1}^{\infty} A_m$ is countable.
\end{theorem}
\begin{theorem}[\textbf{Cantor's Theorem}]
If $A$ is any set, then there is no surjection of $A$ onto the set $\mathcal{P}(A)$ of all subsets of $A$.
\end{theorem}
+35
View File
@@ -0,0 +1,35 @@
\section{Mathematical Induction}
\begin{theorem}[\textbf{Well-Ordering Property of $\N$}]
Every nonempty subset of $\N$ has a least element.
\end{theorem}
A more detailed statement of this property is as follows: If $S$ is a subset of $\N$ and if $S \neq \emptyset$, then there exists $m \in S$ such that $m \leq k$ for all $k \in S$.
\begin{theorem}[\textbf{Principle of Mathematical Induction}]
Let $S$ be a subset of $\N$ that possesses the two properties:
\begin{enumerate}
\item The number $1 \in S$.
\item For every $k \in \N$, if $k \in S$, then $k + 1 \in S$.
\end{enumerate}
Then we have $S = \N$.
\end{theorem}
\begin{theorem}[\textbf{Principle of Mathematical Induction (second version)}]
Let $n_0 \in \N$ and let $P(n)$ be a statement for each natural number $n \geq n_0$. Suppose that:
\begin{enumerate}
\item The statement $P(n_0)$ is true.
\item For all $k \geq n_0$, the truth of $P(k)$ implies the truth of $P(k+1)$.
\end{enumerate}
Then $P(n)$ is true for all $n \geq n_0$.
\end{theorem}
\begin{theorem}[\textbf{Principle of Strong Induction}]
Let $S$ be a subset of $\N$ such that
\begin{enumerate}
\item $1 \in S$.
\item For every $k \in \N$, if $\{1, 2, \dots \} \subseteq S$, then $k+1 \in S$.
\end{enumerate}
Then $S = \N$.
\end{theorem}
+77
View File
@@ -0,0 +1,77 @@
\section{Sets and Functions}
\begin{definition}
Two sets $A$ and $B$ are said to be \textbf{equal,} and we write $A=B$ if they contain the same elements.
\\\\Thus, to prove that the sets $A$ and $B$ are equal, we must show that
\[A \subseteq B \text{ and } B \subseteq A\]
\end{definition}
\begin{definition}
\begin{enumerate}
\item[]
\item The \textbf{union} of sets $A$ and $B$ is the set
\[A \cup B := \{x:x \in A \text{ or } x \in B\}.\]
\item The \textbf{intersection} of the sets $A$ and $B$ is the set
\[A \cap B := \{x:x \in A \text{ and } x \in B \}.\]
\item The \textbf{complement of $B$ relative to $A$} is the set
\[A \setminus B := \{x:x \in A \text{ and } x \notin B\}\]
\end{enumerate}
\end{definition}
\begin{theorem}
If $A$, $B$, $C$ are sets, then
\begin{enumerate}
\item $A \setminus (B \cup C) = (A \setminus B) \cap (A \setminus C),$
\item $A \setminus (B \cap C) = (A \setminus B) \cup (A \setminus C).$
\end{enumerate}
\end{theorem}
\begin{definition}
If $A$ and $B$ are nonempty sets, then the \textbf{Cartesian product} $A \times B$ of $A$ and $B$ is the set of all ordered pairs $(a,b)$ with $a \in A$ and $b \in B$. That is,
\[A \times B := \{(a,b): a \in A,\ b \in B\}.\]
\end{definition}
\begin{definition}
Let $A$ and $B$ be sets. Then a \textbf{function} from $A$ to $B$ is a set $f$ of ordered pairs in $A \times B$ such that for each $a \in A$ there exists a unique $B \in B$ with $(a,b) \in f$. (In other words, if $(a,b) \in f$ and $(a, b') \in f$, then $b = b'$.)
\end{definition}
\begin{definition}
If $E$ is a subset of $A$, then the \textbf{direct image} of $E$ under $f$ is the subset $f(E)$ of $B$ given by
\[f(E):=\{f(x):x \in E\}\]
If $H$ is a subset of $B$, then the \textbf{inverse image} of $H$ under $f$ is the subset $f^{-1}(H)$ of $A$ given by
\[f^{-1}(H):=\{x \in A:f(x) \in H\}\]
\end{definition}
\begin{definition}
Let $f:A \rightarrow B$ be a function from $A$ to $B$.
\begin{enumerate}
\item The function $f$ is said to be \textbf{injective} (or to be \textbf{one-one}) if whenever $x_1 \neq x_2$, then $f(x_1) \neq f(x_2)$. If $f$ is an injective function, we also say that $f$ is an \textbf{injection}.
\item The function $f$ is said to be \textbf{surjective} (or to map $A$ \textbf{onto} $B$) if $f(A)=B$; that is, if the range $R(f)=B$. If $f$ is a surjective function, we also say that $f$ is a \textbf{surjection}.
\item If $f$ is both injective and surjective, then $f$ is said to be \textbf{bijective}. If $f$ is bijective, we also say that $f$ is a \textbf{bijection}.
\end{enumerate}
\end{definition}
\begin{definition}
If $f: A \rightarrow B$ is a bijection of $A$ onto $B$, then
\[g := \{(b,a) \in B \times A: (a,b) \in f\}\]
is a function on $B$ into $A$. This function is called the \textbf{inverse function} of $f$, and is denoted by $f^{-1}$. The function $f^{-1}$ is also called the \textbf{inverse} of $f$.
\\We can also express the connection between $f$ and its inverse $f^{-1}$ by noting that $D(f)=R(f^{-1})$ and $R(f)=D(f^{-1})$ and that
\[b=f(a) \text{ if and only if } a=f^{-1}(b)\]
\end{definition}
\begin{definition}
If $f: A \rightarrow B$ and $g:B \rightarrow C$, and if $R(f) \subseteq D(g) = B$, then the \textbf{composite function} $g \circ f$ (note the order!) is the function from $A$ into $C$ defined by
\[(g \circ f)(x) := g(f(x)) \text{ for all } x \in A\]
\end{definition}
\begin{theorem}
Let $f: A \rightarrow B$ and $g: B \rightarrow C$ be functions and let $H$ be a subset of $C$. Then we have
\[(g \circ f)^{-1}(H) = f^{-1}(g^{-1}(H)).\]
Note the reversal in the order of the functions.
\end{theorem}