I cant explain why these matrix row transformations are wrong

I was helping someone find the determinant of the matrix:
[math] \left[ \begin{array}{ccc} 1 & -a & a^2 \\ 1 & b & b^2 \\ 1 & c & c^2 \\ \end{array} \right] [/math]
Apparently, most students in the class applied the following row transformations:
R1 = R1 - R2 and
R2 = R2 - R3 and
R3 = R3 - R1
to get
[math] \left[ \begin{array}{ccc} 0 & (a-b) & (a^2-b^2) \\ 0 & (b-c) & (b^2-c^2) \\ 0 & (c-a) & (c^2-a^2) \\ \end{array} \right] [/math]
The determinant of this matrix is 0. However, the determinant of the original matrix is (a-b)(b-c)(c-a).
What's wrong with the row transformations applied?