70 lines
978 B
TeX
Raw Normal View History

2023-04-05 15:31:36 -07:00
% use [nosolutions] flag to hide solutions.
% use [solutions] flag to show solutions.
\documentclass[
solutions,
nowarning,
%singlenumbering
]{../../resources/ormc_handout}
%\usepackage{lua-visual-debug}
\usepackage{tikz-3dplot}
2023-04-16 17:29:46 -07:00
\usetikzlibrary{
quotes,
angles,
matrix,
decorations.pathreplacing,
calc,
positioning,
fit
}
\input{tikzset}
2023-04-05 15:31:36 -07:00
\begin{document}
\maketitle
<Advanced 2>
<Spring 2023>
{Linear Algebra 101}
{
Prepared by Mark on \today \\
}
2023-04-09 10:58:49 -07:00
\input{parts/0 notation}
\input{parts/1 vectors}
2023-04-16 17:29:46 -07:00
\input{parts/2 dotprod}
\input{parts/3 matrices}
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
\section{Bonus}
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
\problem{}
Show that the euclidean norm satisfies the triangle inequalty:
$$
2023-04-20 21:11:28 -07:00
||x+y|| \leq ||x|| + ||y||
$$
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
\vfill
\problem{}
Show that the eucidean norm satisfies the reverse triangle inequality:
$$
2023-04-20 21:11:28 -07:00
||x-y|| \geq |~||x|| - ||y||~|
2023-04-10 11:48:29 -07:00
$$
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
\vfill
\problem{}
Prove the Cauchy-Schwartz inequality:
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
$$
2023-04-20 21:11:28 -07:00
||x \cdot y|| \leq ||x||~||y||
2023-04-10 11:48:29 -07:00
$$
2023-04-05 15:31:36 -07:00
2023-04-10 11:48:29 -07:00
\vfill
2023-04-05 15:31:36 -07:00
\end{document}