I'm trying to number theorems in by number and letter, where each group of letters is of different size. The theorems are linked together and I would like to show it in the text. I use the ntheorem package but don't understand how to change the default numbering order.
\documentclass{article}
\usepackage{ntheorem}
\newtheorem{theorem}{Hypothesis}
\begin{document}
\begin{theorem}
This is theorem 1 (should be 1a)
\end{theorem}
\begin{theorem}
This is theorem 2 (should be 1b)
\end{theorem}
\begin{theorem}
This is theorem 2 (should be 2a)
\end{theorem}
\end{document}

\begin{theoremgroup} ... (grouped theorems go here) ... \end{theoremgroup}? – Hammerite Dec 01 '13 at 16:43