So I got help for my LaTeX problem. I am in need of a little more help to get this example to look perfect. I want to perfectly align everything in the words section of each of my equations. I would be happy to get some assistance. Here's the code to the part I need help with:
\section{Applying the Steps}
\noindent {\bf Example:} Simplify \(x+3-2x+(4+2)^2+3x\)
\begin{multialign}
\item
& x+3+(4+2)^2+3x && \\
& = x+3x+3+(4+2)^2 & \text{Rearrange the terms}
&& \\
& = 4x + 3 + (4+2)^2 & \text{Addition(for $x$)}
&& \\
& = 4x + 3 + (6)^2 & \text{Parentheses}
&& \\
& = 4x + 3 + 36 & \text{Exponent}
&& \\
& = 4x + 39 & \text{Addition} &&
\end{multialign}
\noindent {\bf Example:} Simplify \(3x-5(4+3)^2-3x+8x\)
\begin{multialign}
\item \nonumber
& 3x-5(4+3)^2-3x+8x && \\
&= 3x-3x+8x-5(4+3)^2 & \text{Rearrange the terms}
&& \\
&= 0+8x-5(4+3)^2 & \text{Subtraction (for $x$)}
&& \\
&= 8x - 5(4+3)^2 &
\text{Addition (for $x$)}
&& \\
& = 8x - 5(7)^2 & \text{Parentheses}
&& \\
& = 8x - 5(49) & \text{Exponent}
&& \\
& = 8x - 245 & \text{Multiplication} && \\
\end{multialign}
Here's a picture of how the portion I need help with looks like.



{}"button" in the row above the editing window. Please consider editing your code further to make it into an MWE (which should start with\documentclass{...}and ends with\end{document}) that gives rise to the screenshot you've posted. – Mico Jul 15 '14 at 04:22multialignbefore; please include (as Mico has said) a complete example that compiles correctly. – Will Robertson Jul 15 '14 at 04:32multialignenvironment is due to egreg, provided in a solution he created for an earlier question by the OP. At any rate, the OP should provide an MWE rather than make readers play detective to find the definition ofmultialign. – Mico Jul 15 '14 at 04:47