I got an error with the exampleblock environment:
\documentclass{beamer}
\usetheme{PaloAlto}
\begin{document}
\begin{frame}\frametitle{Title}
\begin{exampleblock}
\[
t = \frac{1}{\lambda}\mbox{ln}\left(\frac{N(t)-D(t)}{N(t)}\right)
\]
\end{exampleblock}
\end{frame}
\end{document}
Latex says "exempleblock environment undefined." Where is the problem?

exampleblockand it's missing a second argument: it wants to be invoked as\begin{exampleblock}{title}. See beamer guide. – bloodworks Jan 19 '13 at 09:36