
Cada vez que compilo mi documento, incluido el siguiente código, produce un resultado satisfactorio en el pdf, pero me da un error:
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}
¿Qué hice mal?
Respuesta1
Necesitas llaves para los subíndices: \mu_{\hat{p}}
y\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}
También cambié el texto \^p
a matemáticas \hat{p}
por razones de coherencia y suprimí el \\
al final de cada uno \item
(esos producen undefull \hboxes
). ¿Quizás en lugar de $n(1-\pi) \geq to$
usted quiso decir algo como $n(1-\pi) \geq t_{0}$
?
Subrayarlo no es una característica tipográfica agradable, por lo que también te sugiero que lo suprimas.