Mark 50c4d142c5
All checks were successful
CI / Typst formatting (pull_request) Successful in 4s
CI / Typos (pull_request) Successful in 13s
CI / Build (pull_request) Successful in 5m26s
Lattice edits
2025-04-03 19:01:01 -07:00

55 lines
1.3 KiB
TeX

\definition{}
The \textit{integer lattice} $\mathbb{Z}^n$ is the set of points with integer coordinates in $n$ dimensions. \par
For example, $\mathbb{Z}^3$ is the set of points $(a, b, c)$ where $a$, $b$, and $c$ are integers.
\problem{}
Draw $\mathbb{Z}^2$.
\vfill
\definition{}
We say a set of vectors $\{v_1, v_2, ..., v_k\}$ \textit{generates} $\mathbb{Z}^n$
if every lattice point can be written as
$$
a_1v_1 + a_2v_2 + ... + a_kv_k
$$
for integer coefficients $a_i$. \par
\textbf{Bonus:} show that $k$ must be at least $n$.
\problem{}
Which of the following generate $\mathbb{Z}^2$?
\begin{itemize}
\item $\{ (1,2), (2,1) \}$
\item $\{ (1,0), (0,2) \}$
\item $\{ (1,1), (1,0), (0,1) \}$
\end{itemize}
\begin{solution}
Only the last.
\end{solution}
\vfill
\problem{}
Find a set of two vectors other than $\{ (0, 1), (1, 0) \}$ that generates $\mathbb{Z}^2$. \\
\vfill
\problem{}
Find a set of vectors that generates $\mathbb{Z}^n$.
\vfill
\pagebreak
\definition{}
Say we have a generating set of a lattice. \par
The \textit{fundamental region} of this set is the $n$-dimensional parallelogram spanned by its members. \par
\problem{}
Draw two fundamental regions of $\mathbb{Z}^2$ using two different generating sets. Verify that their volumes are the same.
\vfill
\pagebreak