2023-04-17 11:34:36 -07:00

58 lines
1.5 KiB
TeX

\section{Linear Maps}
\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$.
\definition{}<lineardef>
Let $f: U \to V$ be a map. \\
We say $f$ is \textit{linear} if it satisfies the following for any $u \in U$, $v \in V$, $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. Use \ref{lineardef}.
\vfill
\problem{}
Is $f(x) = mx + b$ a linear map?
\vfill
\problem{}
In general, what does a linear map in $\mathbb{R} \to \mathbb{R}$ look like?
\vfill
\pagebreak
\problem{}
Is the map ${median}(v): \mathbb{R}^3 \to \mathbb{R}$ linear? \\
\hint{$median([3, 5, 4]) = 4$, but you already knew that.}
\vfill
\problem{}
Is the map $f(v): \mathbb{R}^3 \to \mathbb{R}$ defined by $f(v) = v_0 + 2v_1 + v_2$ linear? \\
\hint{$v_n$ is the $n^\text{th}$ element of $v$. $v$ is a 3-element vector.}
\vfill
\problem{}
Is $\frac{d}{dx}(p): \mathbb{P}^n \to \mathbb{P}^{n-1}$ a linear map on $\mathbb{P}^n$? \\
\vspace{1mm}
\hint{$\mathbb{P}^n$ is the set of polynomials with degree at most $n$.}
\vfill
\problem{}
In general, what does a linear map from $\mathbb{R}^m \to \mathbb{R}^n$ look like?
\vfill
\pagebreak