\documentclass{article}
\usepackage[fleqn]{amsmath}
\usepackage{mathrsfs}
\usepackage{amsfonts}
\pagestyle{empty}
\setlength\mathindent{0pt}
\begin{document}
\[3x^3\]
\[3x^2\]
\[3x\]
\[3\]
\end{document}
When I render this document, there is a lot more space between the first two options than between the second and third options. Is there a way to make sure it's consistent? Thanks!

\usepackage{mathtools}instead ofamsmath. It fixes a couple of bugs and adds a feature or two. To read about mathtools, runtexdoc mathtoolsin a terminal (assuming you have it installed, of course) – kahen Nov 23 '10 at 5:56mathtoolsdocumentation: a line like\usepackage[fleqn,tbtags]{mathtools}is equivalent to\usepackage[fleqn,tbtags]{amsmath}\usepackage{mathtools}. – Hendrik Vogt Nov 23 '10 at 14:03