While reviewing the Wikipedia article surrounding Pascal's triangle, I came across the following:
Pascal's triangle determines the coefficients which arise in binomial expansions. For example, consider the expansion:
$(x + y)^2 =$
$x^2 + 2xy + y^2 = $
$1x^2y^0 + 2x^1y^1 + 1x^0y^2$
However, since $x^0 = 1$, and, $x^1 = x$, why not simply write it as:
$(x + y)^2 =$
$x^2 + 2xy + y^2 = $
$x^2 + 2xy + y^2$
Is it because of the keyword "expansion", or am I missing something critical here?
Edit: Ohhhhhhhh I get it now... Thanks to @JamesA for the answer and pointing out in the comments that I had ported it incorrectly. Had I ported it over correctly, it would've made sense and we wouldn't have this question.