The multinomial expansion for the power of
is the key to solving this problem. The expansion of the square of the sum of elements
in the list
looks like:

Let
be the sum of elements,
be the sum of squares of elements, and
be the sum of all pairwise products of elements of the list
. We can now rewrite the above equation as:

We can also observe the following about how the above values change when an additional element
is added to the list
:
![\displaystyle \begin{align}
S(X + [n]) &= S(X) + n \\
SQ(X + [n]) &= SQ(X) + n^2 \\
SP(X + [n]) &= SP(X) + n \cdot S(X)
\end{align}](//static.dmoj.ca/mathoid/8d21e2a1c372802f79ba87d55b1aa6e40e7adf4d/svg)
Our task is to achieve
, where
is the extended list that we get by adding extra elements to
. In other words, we want to make
.
Test Set 1: 
If we are allowed only a single addition, we must choose an element
such that
.
![\displaystyle \begin{align}
SP(E + [n]) = 0 \\
\implies SP(E) + n \cdot S(E) = 0 \\
\implies n \cdot S(E) = -SP(E)
\end{align}](//static.dmoj.ca/mathoid/5340e563d774c76b01912c60cf9569d8f18ec7f9/svg)
If
, we can get a squary list whenever
is an integer, which happens if and only if
divides
. In that case,
is our answer.
If
, then
. Since we want
, we need
. This is possible only if
, that is, if all elements in
are zeros. In this case, we can choose any value as our answer. But if any element in
is not zero, it is impossible to get a squary list with only one addition.
Test Set 2: 
At first, the search space might seem hopelessly broad here. But we can observe (or surmise and then confirm) that it is always possible to get a squary list by adding only two elements:

![n_2 = -SP(E + [n_1])](//static.dmoj.ca/mathoid/b430eabb8fced2f89b2f5a64d1cd54f83ee699c4/svg)
After adding
, we have
![\displaystyle S(E + [n_1]) = 1](//static.dmoj.ca/mathoid/973dcea9409a5e2f1dec9789ead25ceb836eb44c/svg)
After adding
, we have
![\displaystyle \begin{align}
SP(E + [n_1, n_2]) &= SP(E + [n_1]) + n_2 \cdot S(E + [n_1]) \\
&= SP(E + [n_1]) + (-SP(E + [n_1])) \cdot 1 \\
&= 0
\end{align}](//static.dmoj.ca/mathoid/c8a09e639d5a3e6b332ea310e7c077ca804c9f37/svg)
Thus, the two numbers satisfy the condition
. We can also see that since the numbers in the original list are each of magnitude no greater than
,
, and
, both well within the limits.
Comments