I wanted to align two enumerated item lists horizontally like in the post shown here, however, my alignment is skewed from one item to the other. Bascially, I wanted help to get both items aligned at the "=" sign. Can you help me fix this issue?
Here is my code:
\documentclass{book}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage{mathptmx}
\usepackage{enumitem} % Customize lists
\begin{document}
\begin{enumerate}[align=left,style=nextline,leftmargin=*,labelsep=\parindent,label=\textbf{(\alph*)}]
\item\hfill$\begin{aligned}[t]
P(1) & = 3.1479 \\
K(1) & = 0.786986\\
\hat{x}(1) & = 0 + 0.786986(1.5-0)\\
& = 1.1805
\end{aligned}$\hfill\null\\
\item \hfill$\begin{aligned}[t]
P(2) & = 3.1431\\
K(2) & = 0.7870\\
\hat{x}(2) & = 1.1805 + 0.786986(3.0-1.1805)\\
& = 2.6124
\end{aligned}$\hfill\null
\end{enumerate}
\end{document}

