I want to get another variant for the alignment points in my question answered by Hendrik Vogt, see How to construct a long equation that is split in LHS and RHS to occupy a narrow column?.
\documentclass[twocolumn]{article}
\usepackage[a4paper,margin=1cm]{geometry}
\usepackage{amsmath}
\begin{document}
\begin{enumerate}
\item The degree of (C) is 3.
\item The degree of (A) is 1.
\item%
$\!
\begin{aligned}[t]
-3x(x+1)&-2x(x-1)\\
&+4(x^2-3x-1)
&= \!\begin{aligned}[t]
&-3x^2-3x-2x^2+2x+v \\
&+4x^2-12x-4
\end{aligned} \\
&= \!\begin{aligned}[t]
-3x^2-&3x-2x^2+2x+v \\
&+4x^2-12x-4
\end{aligned} \\
&= -x^2-13x-4
\end{aligned}
$
\end{enumerate}
\end{document}
The code above does not produce what I want to achieve as follows.

Note: Feel free to edit the title to be better because I have difficulty to rephrase it.


enumerateis a must. – kiss my armpit Jan 30 '13 at 05:50-and+on the first RHS is incorrect. The first-is a unary operator, while+is binary. – Werner Jan 30 '13 at 05:54