\( \newcommand{\blah}{blah-blah-blah} \newcommand{\eqb}[1]{\begin{eqnarray*}#1\end{eqnarray*}} \newcommand{\eqbn}[1]{\begin{eqnarray}#1\end{eqnarray}} \newcommand{\bb}[1]{\mathbf{#1}} \newcommand{\mat}[1]{\begin{bmatrix}#1\end{bmatrix}} \newcommand{\nchoose}[2]{\left(\begin{array}{c} #1 \\ #2 \end{array}\right)} \newcommand{\defn}{\stackrel{\vartriangle}{=}} \newcommand{\rvectwo}[2]{\left(\begin{array}{c} #1 \\ #2 \end{array}\right)} \newcommand{\rvecthree}[3]{\left(\begin{array}{r} #1 \\ #2\\ #3\end{array}\right)} \newcommand{\rvecdots}[3]{\left(\begin{array}{r} #1 \\ #2\\ \vdots\\ #3\end{array}\right)} \newcommand{\vectwo}[2]{\left[\begin{array}{r} #1\\#2\end{array}\right]} \newcommand{\vecthree}[3]{\left[\begin{array}{r} #1 \\ #2\\ #3\end{array}\right]} \newcommand{\vecdots}[3]{\left[\begin{array}{r} #1 \\ #2\\ \vdots\\ #3\end{array}\right]} \newcommand{\eql}{\;\; = \;\;} \definecolor{dkblue}{RGB}{0,0,120} \definecolor{dkred}{RGB}{120,0,0} \definecolor{dkgreen}{RGB}{0,120,0} \)

Assignment 1


 

Part I: Pen-and-paper

  1. In this problem, you will get a little practice with "crank it out" proofs and in doing so, refresh what you know about complex numbers. Recall that the conjugate of a complex number \(z = a+ib\) is the complex number \(\overline{z} = a-ib\). Now suppose \(z_1\) and \(z_2\) are complex numbers. Show that:
    1. \(\overline{z_1 + z_2} = \overline{z_1} + \overline{z_2}\)
    2. \(\overline{z_1 - z_2} = \overline{z_1} - \overline{z_2}\)
    3. \(\overline{(z_1 z_2)} = \overline{z_1} \;\; \overline{z_2}\)

  2. For vectors \({\bf u}\) and \({\bf v}\), provide a geometric proof that \(|{\bf u} + {\bf v}| \leq |{\bf u}| + |{\bf v}|\).

  3. What is the implication for complex numbers? Can the same idea lead to the conclusion that \(|z_1 + z_2| \leq |z_1| + |z_2|\)?

  4. For real vectors \({\bf u}\) and \({\bf v}\), we know that \({\bf u} \cdot {\bf v} = |{\bf u}| |{\bf v}| \cos\theta\), where \(\theta\) is the angle between them. From this, what can you conclude about the size relationship between \(|{\bf u} \cdot {\bf v}|\) and \(|{\bf u}| |{\bf v}|\)? Is one always less than the other?


Part II: Programming
As part of this course, you will learn core ideas in linear algebra by seeing them in code. Most of this will occur through building your own library of linear algebra code, written in a single Java class.



Submission