Skip to content

Commit

Permalink
Merge pull request #12 from llewelld/rules-1c
Browse files Browse the repository at this point in the history
Add Chapter 1.C rules to "all the rules we know"
  • Loading branch information
llewelld authored Nov 1, 2023
2 parents fe7defe + 76625af commit dc276d8
Showing 1 changed file with 87 additions and 18 deletions.
105 changes: 87 additions & 18 deletions reference/all-the-rules-we-know.tex
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ \section*{Chapter 1.A}
Two lists are equal if and only if they have the same length and the same elements in the same order.
\end{definition}

\begin{definition}{1.10}[$\F^n$]
\begin{notation}{1.10}[notation: $n$]
$n$ represents a positive integer.
\end{notation}

\begin{definition}{1.11}[$\F^n$, coordinate]
$\F^n$ is the set of all lists of length $n$ of elements of $F$:
$$
\F^n = \{ (x_1, \ldots, x_n ) \setsep x_j \in \F \text{ for } j = 1, \ldots, n \}.
Expand All @@ -169,29 +173,29 @@ \section*{Chapter 1.A}
For $(x_1, \ldots, x_n ) \in \F^n$ and $j \in \{ 1, \ldots, n \}$, we say that $x_j$ is the $j^{\text{th}}$ \defn{coordinate} of $(x_1, \ldots, x_n )$.
\end{definition}

\begin{definition}{1.12}[addition in $F^n$]
\defn{Addition} in $F^n$ is defined by adding corresponding coordinates:
\begin{definition}{1.13}[addition in $\F^n$]
\defn{Addition} in $\F^n$ is defined by adding corresponding coordinates:
$$
(x_1, \ldots, x_n ) + (y_1, \ldots, y_n ) = (x_1 + y_1, \ldots, x_n + y_n ).
$$
\end{definition}

\begin{definition}{1.14}[$0$]
\begin{definition}{1.15}[$0$]
Let $0$ denote the list of length $n$ whose coorinates are all 0:
$$
(0, \ldots, 0 ).
$$
\end{definition}

\begin{definition}{1.16}[additive inverse in $F^n$]
\begin{definition}{1.17}[additive inverse in $\F^n$]
For $x \in \F^n$, the \defn{additive inverse} of $x$, denoted $-x$, is the vector $-x \in \F^n$ such that
$$
x + (-x) = 0.
$$
In other words, if $x = (x_1, \ldots, x_n)$, then $-x = (-x_1, \ldots, -x_n)$.
\end{definition}

\begin{definition}{1.17}[scalar multiplication in $F^n$]
\begin{definition}{1.18}[scalar multiplication in $\F^n$]
The \defn{product} of a number $\lambda$ and a vector in $\F^n$ is computed by multiplying each coordinate of the vector by $\lambda$:
$$
\lambda (x_1, \ldots, x_n) = (\lambda x_1, \ldots, \lambda x_n);
Expand All @@ -204,13 +208,13 @@ \section*{Chapter 1.A}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Chapter 1.B}

\begin{definition}{1.18}[addition, scalar multiplication]
\begin{definition}{1.19}[addition, scalar multiplication]
An \defn{addition} on a set $V$ is a function that assigns an element $u + v \in V$ to each pair of elements $u, v \in V$.

A \defn{scalar multiplication} on a set $V$ is a function that assigns an element $\lambda v \in V$ to each $\lambda \in \F$ and each $v \in V$.
\end{definition}

\begin{definition}{1.19}[vector space]
\begin{definition}{1.20}[vector space]
A \defn{vector space over $\F$} is a set $V$ along with an addition on $V$ and a scalar multiplication on $V$ such that the following properties hold:

\defn{commutativity}
Expand Down Expand Up @@ -244,17 +248,17 @@ \section*{Chapter 1.B}
\end{forceindent}
\end{definition}

\begin{definition}{1.20}[vector, point]
\begin{definition}{1.21}[vector, point]
Elements of a vector space are called \defn{vectors} or \defn{points}.
\end{definition}

\begin{definition}{1.21}[real vector space, complex vector space]
\begin{definition}{1.22}[real vector space, complex vector space]
A vector space over $\R$ is called a \defn{real vector space}.

A vector space over $\C$ is called a \defn{complex vector space}.
\end{definition}

\begin{notation}{1.23}[$\F^S$]
\begin{notation}{1.24}[$\F^S$]
If $S$ is a set, $\F^S$ denotes the set of functions from $S$ to $\F$.

For $f, g \in \F^S$ the \defn{sum} $f + g \in \F^S$ is the function defined by
Expand All @@ -270,40 +274,105 @@ \section*{Chapter 1.B}
for all $x \in S$.
\end{notation}

\begin{notation}{1.27}[$-v, w - v$]
\begin{notation}{1.28}[$-v, w - v$]
Let $v, w \in V$. Then
\begin{enumerate}
\item $-v$ denotes the additive inverse of $v$;
\item $w - v$ is defined to be $w + (-v)$.
\end{enumerate}
\end{notation}

\begin{notation}{1.28}[$V$]
\begin{notation}{1.29}[$V$]
$V$ denotes a vector space over $\F$.
\end{notation}

\newpage

The following rules can all derived from the definition of a vector space.

\begin{result}{1.25}[Unique additive identity]
\begin{result}{1.26}[unique additive identity]
A vector space has a unique additive identity.
\end{result}

\begin{result}{1.26}[Unique additive inverse]
\begin{result}{1.27}[unique additive inverse]
Every element in a vector space has a unique additive inverse.
\end{result}

\begin{result}{1.29}[The number $0$ times a vector]
\begin{result}{1.30}[the number $0$ times a vector]
$0v = 0$ for every $v \in V$.
\end{result}

\begin{result}{1.30}[A number times the vector $0$]
\begin{result}{1.31}[a number times the vector $0$]
$a0 = 0$ for every $a \in \F$.
\end{result}

\begin{result}{1.31}[The number $-1$ times a vector]
\begin{result}{1.32}[the number $-1$ times a vector]
$(-1)v = -v$ for every $v \in V$.
\end{result}

\newpage

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Chapter 1.C}

\begin{definition}{1.33}[subspace]
A subset $U$ of $V$ is called a \defn{subspace} of $V$ if $U$ is also a vector space with the same additive identity, addition, and scalar multiplication as on $V$.
\end{definition}

\begin{definition}{1.36}[sum of subspaces]
Suppose $V_1, \ldots, V_m$ are subspaces of $V$. The \defn{sum} of $V_1, \ldots, V_m$, denoted by $V_1 + \cdots + V_m$, is the set of all possible sums of elements of $V_1, \ldots, V_m$. More precisely:
$$
V_1 + \cdots + V_m = \{v_1 + \cdots + v_m \setsep v_1 \in V_1, \ldots, v_m \in V_m \}.
$$
\end{definition}

\begin{definition}{1.41}[direct sum, $\oplus$]
Suppose $V_1, \ldots, V_m$ are subspaces of $V$.

\begin{enumerate}
\item The sum $V_1 + \cdots + V_m$ is called a \defn{direct sum} if each element of $V_1 + \cdots + V_m$ can be written in only one way as a sum $v_1 + \cdots + v_m$, where each $v_k \in V_k$.
\item If $V_1 + \cdots + V_m$ is a direct sum, then $V_1 \oplus \cdots \oplus V_m$ denotes $V_1 + \cdots + V_m$, with the $\oplus$ notation serving as an indication that this is a direct sum.
\end{enumerate}
\end{definition}

\newpage

The following rules can all be derived from the definitions.

\begin{result}{1.34}[conditions for a subspace]
A subset $U$ of $V$ is a subspace of $V$ if and only if $U$ satifies the following three conditions.

\defn{additive identity}
\begin{forceindent}
$0 \in U$.
\end{forceindent}

\defn{closed under addition}
\begin{forceindent}
$u, w \in U$ implies $u + w \in U$.
\end{forceindent}

\defn{closed under scalar multiplication}
\begin{forceindent}
$a \in \F$ and $u \in U$ implies $au \in U$.
\end{forceindent}
\end{result}

\begin{result}{1.40}[sum of subspaces is the smallest containing subspace]
Suppose $V_1, \ldots, V_m$ are subspaces of $V$. Then $V_1 + \cdots + V_m$ is the smallest subspace of $V$ containing $V_1, \ldots, V_m$.
\end{result}

\begin{result}{1.45}[condition for a direct sum]
Suppose $V_1, \ldots, V_m$ are subspaces of $V$. Then $V_1 + \cdots + V_m$ is a direct sum if and only if the only way to write $0$ as a sum $v_1 + \cdots + v_m$, where each $v_k \in V_k$, is by taking each $v_k$ equal to $0$.
\end{result}

\begin{result}{1.46}[direct sum of two subspaces]
Suppose $U$ and $W$ are subspaces of $V$. Then
$$
U + W \text{ is a direct sum} \Longleftrightarrow U \cap W = \{ 0 \}.
$$
\end{result}



\end{document}

0 comments on commit dc276d8

Please sign in to comment.