I have 2 parts (i) and (ii) that I am trying to write out, but I can't seem to get the (i) and (ii) it look nicely, i.e. itemised. I tried using the \begin{enumerate} command but it doesnt seem to work together with the align environment? How would I get the 2 parts to be itemised/look nicely? (regarding the (i) and (ii)).
\documentclass{report}
\usepackage{amsmath,amsthm,enumitem}% http://ctan.org/pkg/{amsmath,amsthm}
\theoremstyle{definition}
\newtheorem{defn}{Definition} % definition numbers are dependent on theorem numbers
\begin{document}
\begin{defn}
Let $x, y$ be some unknowns, we let:
\begin{align*}
(i) x^2 + y^2 &:= (x+y)(x-y) \\
&:= (1+2)(3+4) \\
&:= (3\times 7) \\
&\phantom{:}= 21 \\
&\phantom{:}= 42/2\\ \\
(ii) x^2 + y^2 &:= (x+y)(x-y) \\
&:= (1+2)(3+4)(3+4)(3+4)(3+4) \\
&:= (3\times 7)(3\times 7)(3\times 7) \\
&\phantom{:}= 123456789 \\
&\phantom{:}= 42/2
\end{align*}
\end{defn}
\end{document}

