[Tex/LaTex] How to left-align this equation

equationshorizontal alignmentmath-modesplit

I wrote an equation in LaTeX, and it is centered. How can I left align it but without losing the split? (I still want the equal signs one under each other).

enter image description here

Code:

\begin{equation*}
\begin{split}
a &=(3+6+9+12+...+147)+1125\\
&=3 \cdot (1+2+3+4+...+49)+1125\\
&=3 \cdot \displaystyle\frac{49 \cdot 50}{2} + 1125=49 \cdot 75 + 1125\\
&=3675 + 1125\\
&=4900\\
&=70^2 \Rightarrow \sqrt{a} = \sqrt{70^2}=70 \end{split}
\end{equation*}

Best Answer

I find no reason for this display to be flush left. Anyway…

\documentclass{article}
\usepackage{amsmath}

\begin{document}

The following display is left aligned. I don't know why it should be
treated differently from the other displays, but here it is anyhow.
\begin{flushleft}
$\begin{aligned}
a &=(3+6+9+12+\dots+147)+1125\\
  &=3 \cdot (1+2+3+4+\dots+49)+1125\\
  &=3 \cdot \frac{49 \cdot 50}{2} + 1125=49 \cdot 75 + 1125\\
  &=3675 + 1125\\
  &=4900\\
  &=70^2 \Rightarrow \sqrt{a} = \sqrt{70^2}=70
\end{aligned}$
\end{flushleft}
Note that dots should be specified with \verb|\dots|, not with
three periods and that \verb|\displaystyle| is not needed; there
is \verb|\dfrac|, if needed (not here).

\end{document}

enter image description here