
Sempre que compilo meu documento incluindo o código a seguir, ele produz uma saída satisfatória no pdf, mas ocorre um erro:
43
Missing { inserted.
<to be read again>
\gdef
l.43 \item $\mu_\hat{p}
$ = mean of all possible values of $\hat{p} = \pi$. \\
\begin{itemize}
\item $\mu_\hat{p}$ = mean of all possible values of $\hat{p} = \pi$. \\
\item $\sigma_\hat{p}$ = standard deviation of all possible values of \^p = $\sqrt{\frac{\pi(1-\pi)}{n}}$ \\
\item CLT (for \^p): If $n\pi \geq 10$ \underline{AND} $n(1-\pi) \geq to$, then the histogram of all possible values of \^p will be approximately normal. \\
\end{itemize}
O que eu fiz errado?
Responder1
Você precisa de colchetes para os subscritos: \mu_{\hat{p}}
e\sigma_{\hat{p}}
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\begin{itemize}
\item $\mu_{\hat{p}}$ is the mean of all possible values of $\hat{p} = \pi$.
\item $\sigma_{\hat{p}}$ represents the standard deviation of all possible values of $\hat{p} = \sqrt{\frac{\pi(1-\pi)}{n}}$
\item CLT (for $\hat{p}$): If $n\pi \geq 10$ \underline{AND} $n(1-\pi) \geq to$, then the histogram of all possible values of $\hat{p}$ will be approximately normal.
\end{itemize}
\end{document}
Também mudei o texto \^p
para matemática \hat{p}
por uma questão de consistência e suprimi o \\
no final de cada um \item
(eles produzem undefull \hboxes
). Talvez em vez de $n(1-\pi) \geq to$
você quisesse dizer algo como $n(1-\pi) \geq t_{0}$
?
Sublinhar não é um recurso tipográfico interessante, então eu também sugiro que você o suprima.