The package mathtools provides a new enviroment specifically built to display equations or big symbols inside a case environment: dcases.
This could be a useful MWE:
\documentclass{article}
%
\usepackage{mathtools} % automatically loads "amsmath"
%
\begin{document}
%
Standard environment:
\[
\begin{dcases}
\sum_{k=0}^{n}\binom{n}{k}=2^n\\
\int f(x)\,\mathrm{d}x=F(x)+C
\end{dcases}
\]
This is a new defined environment:
\[
\begin{dcases}
\sum_{k=0}^{n}\binom{n}{k}=2^n\\
\int f(x)\,\mathrm{d}x=F(x)+C
\end{dcases}
\]
%
\end{document}
Which gives for the output:

An alternative would be to re-define the environment cases by calling it from the mathtools package, i.e.:
\@ifpackageloaded{mathtools}{%
\renewenvironment{cases}{\begin{dcases}}{\end{dcases}}%
}{%
% doesn't do anything if the package isn't loaded
}
This macro could be useful inside a custom package (By the way this procedure is purely optional, since inside the LaTeX code it doesn't matter where a "d" is added inside an environment definition).