I need to redefine the theorem style. Is it possible to change the numbers to letters?
\theoremstyle{definition}
\newtheorem{problem}{Problem}
\begin{problem}
fff
\end{problem}
\begin{problem}
ccc
\end{problem}
I need to do this:
Problem A. fff
Problem B. ccc
instead of using numbers.

\renewcommand\proofname{Solution}or define a new theorem-like structure giving you the required settings. – Gonzalo Medina Jun 28 '13 at 15:15