Is this true? $$ \sum\limits_{i<j} x_ix_j = \sum\limits_{j=1}^n \sum\limits_{i=1}^j x_ix_j$$ $i, j = 1,\ldots,n$
And on the left hand side, how can you tell when it stops?
Is this true? $$ \sum\limits_{i<j} x_ix_j = \sum\limits_{j=1}^n \sum\limits_{i=1}^j x_ix_j$$ $i, j = 1,\ldots,n$
And on the left hand side, how can you tell when it stops?
Not quite: you are summing terms $x_jx_j$ on the right that don't appear on the left... The correct formula is $$\sum_{j=2}^n\sum_{i=1}^{j-1}\,x_ix_j$$
You are close! Notice that $\sum\limits_{j=1}^n \sum\limits_{i=1}^j x_ix_j$ contains the term $x_jx_j\forall j \leq n$
$$ \sum\limits_{i<j} x_ix_j = \sum\limits_{j=2}^n \sum\limits_{i=1}^{j-1} x_ix_j$$
I like to use Iverson summation: $$ \sum_{i<j}x_ix_j=\sum_{j=1}^n\sum_{i=1}^n[i<j] x_ix_j=\sum_{j=1}^n\sum_{i=1}^{j-1}x_ix_j=\sum_{j=2}^n\sum_{i=1}^{j-1}x_ix_j $$ where $[i<j]$ is an Iverson bracket equals one if $i<j$ and zero otherwise.
You wrote $\sum\limits_{i<j} x_ix_j = \sum\limits_{j=1}^n \sum\limits_{i=1}^j x_ix_j$
To change the left side so that is the same as the right, I would change it to $\sum\limits_{1\le i\le j \le n} x_ix_j $.