I am having some problems that `seem' to me to be a conflict between amsmath and ntheorem. Here is a MWE:
\documentclass[12pt,a4paper,oneside]{report}
\usepackage[left=2.00cm,right=2.00cm,top=2.45cm,bottom=2.5cm]{geometry}
\usepackage[amsmath,amstext,thmmarks]{ntheorem}
\usepackage{color,fancyhdr,framed,latexsym,multicols,slashed}
\theoremclass{Theorem}
\theoremstyle{break}
\newframedtheorem{Theorem}[Theorem]{Theorem}
\begin{document}
\begin{Theorem}
Let $X$ be a set with $n$ elements. Then $\mathcal{P}(X)$ is a set with $2^n$ elements.
\end{Theorem}
\end{document}
Ay help would be greatly appreciated. Thanks.

amsmathpackage;ntheoremdoesn't do it and the options activates the compatibility mode. The optionamstextdoesn't exist. Check alsomulticol(not with a finals); the\newframedtheoremcommand is provided bymdframed. – egreg May 13 '12 at 20:10\usepackage{amsmath}before loadingntheorem. – egreg May 13 '12 at 20:17