How do I force the following aligned output all the way to the upper left (right next to the enumerated list item)? I still want the 2nd and 3rd lines to be aligned with it's above equal sign.
\documentclass{article}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{enumerate}
\begin{document}
\begin{enumerate}[(a)]
\item
\begin{align*}
P(A \XOR B) &= P(A)+P(B)-2P(A\cap B)
\\ &= 0.15 + 0.10 - 0.05
\\ &= 0.20
\end{align*}
\end{enumerate}
\end{document}