38 lines
1.0 KiB
TeX
Raw Normal View History

2023-04-03 11:13:33 -07:00
\section{Linear Transformations}
2023-03-26 20:00:14 -07:00
\definition{}
A \textit{function} or \textit{map} $f$ from a set $A$ to a set $B$ is a rule that assigns an element of $B$ to each element of $A$. We write this as $f: A \to B$.
2023-03-26 22:09:51 -07:00
\definition{}
2023-03-26 20:00:14 -07:00
Let $V$ and $U$ be vector spaces, and let $f: V \to U$ be a map from $V$ to $U$. \\
We say $f$ is \textit{linear} if it satisfies the following for any $v \in V$, $u \in U$, $a \in \mathbb{R}$:
\begin{itemize}
\item $f(u + v) = f(u) + f(v)$
\item $f(au) = af(u)$
\end{itemize}
In other words, $f$ is linear if it is \say{closed} under addition and scalar multiplication.
\problem{}
It is often convenient to combine the two conditions above into one. \\
Show that $f(au + v) = af(u) + f(v)$ iff $f$ is linear.
\vfill
\problem{}
Is $f(x) = mx + b$ a linear map on $\mathbb{R}$?
\vfill
\problem{}
2023-04-05 09:08:43 -07:00
In general, what does a linear map $\mathbb{R} \to \mathbb{R}$ look like?
2023-03-26 20:00:14 -07:00
\vfill
\problem{}
2023-04-05 09:08:43 -07:00
Is the map ${median}(v): \mathbb{R}^3 \to \mathbb{R}$ linear? \\
\hint{$median([3, 5, 4]) = 4$, but you already knew that.}
2023-03-26 20:00:14 -07:00
\vfill
\pagebreak