\align が完了する前に段落が終了しました

\align が完了する前に段落が終了しました
\documentclass{article}

\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{amssymb}
\pagestyle{fancy}

\rhead{Homework for Stats Chapter 4\textbackslash Lab}

\cfoot{Page \thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}
\section{4.4 Excercises}
\begin{enumerate}
    \item For each experiment, list the sample space and the probabilities
          for each outcome. Compute the expected number of heads in each case.
    \begin{enumerate}
        \item Two independent tosses of a fair coin\\
        \{(HH),(HT),(TH),(TT)\}\\
        $\mathbb{P}(HH)=\frac{1}{4} \mathbb{P}(HT)
                =\frac{1}{4}\mathbb{P}(TH)=\frac{1}{4}\mathbb{P}(TT)
                =\frac{1}{4}$\\

        \begin{align}
        \mathbb{E}\left ( H\right )=\sum _{i=0}H_i\cdot p_i & =2\cdot\frac{1}{4}+1\cdot\frac{1}{4}+1\cdot\frac{1}{4}+0\cdot\frac{1}{4}\\
        & =\frac{1}{2}+\frac{1}{4}+\frac{1}{4}\\
        & =1\\

        \end{align}
\end{enumerate}
\end{enumerate}

\end{document}

どこが間違っているのかわかりません。すべて閉じました。「\align が完了する前に段落が終了しました。」というメッセージが表示されます。

答え1

align 環境に空白行があります。コードにいくつか変更を加えました。インライン\frac(小さすぎると思います)をパッケージ\mfracの (= 中サイズの分数、表示スタイルの分数の約 80%)に置き換え、別の空白行を削除しました。また、align の各行に番号を付ける必要はないと思うので、にネストされた環境nccmathに置き換えました。alignedequation

\documentclass{article}

\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{amssymb}
\usepackage{nccmath}
\pagestyle{fancy}
\fancyhf{}
\rhead{Homework for Stats Chapter 4\textbackslash Lab}

\cfoot{Page \thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}

\section{4.4 Exercises}
\begin{enumerate}
 \item For each experiment, list the sample space and the probabilities
          for each outcome. Compute the expected number of heads in each case.
 \begin{enumerate}
 \item Two independent tosses of a fair coin\\
        \{(HH),(HT),(TH),(TT)\}\\
        $\mathbb{P}(HH)=\mfrac{1}{4} \mathbb{P}(HT)
                =\mfrac{1}{4}\mathbb{P}(TH)=\mfrac{1}{4}\mathbb{P}(TT)
                =\mfrac{1}{4}$

        \begin{equation}
        \begin{aligned}
        \mathbb{E}\left ( H\right )=∑ _{i=0}^4H_i · p_i & =2 · \frac{1}{4}+1 · \frac{1}{4}+1 · \frac{1}{4}+0 · \frac{1}{4}\\
        & =\frac{1}{2}+\frac{1}{4}+\frac{1}{4}\\
        & =1
        \end{aligned}
        \end{equation}
\end{enumerate}
\end{enumerate}
\end{document} 

ここに画像の説明を入力してください

答え2

環境の最後の行の末尾に改行を入れる必要はないと思います。最後の . を削除してみてください\\

関連情報