3

I'm reading Barbeau's Polynomials.

Let $m$ be a positive integer. It is a remarkable fact that the numbers from $1$ to $2^{m+1}$ inclusive can be subdivided into two subsets $A$ and $B$ such that, for any polynomial $p(t)$ of degree not exceeding $m$, the sum of the values of the values of the polynomials over the numbers in $A$ is equal to the sum of the values over the numbers in $B$. Show that we can reduce the problem to finding sets $A$ and $B$ for which the sum of the $k$th powers of the numbers in one set is equal to the sum of the $k$th powers for the other, for $k=0,1,2,...,m$.

I'm trying to check the information given in the exercise empiricaly on Mathematica, I've created a polynomial function $f(x)=gx^2+bx+c$ and I've partitioned the set of numbers from $1$ to $2^{3+1}$ this way:

$\{2, 3, 8, 9, 10, 11, 12, 13\}$

$\{14, 6, 16, 4, 15, 5, 7, 1\}$

Now I'm trying to sum the values of the polynomial over the values on $A$ and $B$ and I'm obtaining:

$68 b + 8 c + 692 g$

$68 b + 8 c + 804 g$

I've used a polynomial of degree $>3$ and I'm not obtaining the desired result. What am I doing wrong?

Red Banana
  • 23,956
  • 20
  • 91
  • 192

1 Answers1

2

He says it is possible for you to arrange the numbers from $1$ to $16$ into sets $A$ and $B$ where any cubic polynomial's values on one sums to the sum of its values on the other. He does not say that you can use any partition. That's patently false.

On the other hand, if you look at the split

$\{1, 4, 6, 7, 10, 11, 13, 16\}, \qquad \{2, 3, 5, 8, 9, 12, 14, 15\},$

then you'll see that the sum of the $0$th powers on both sides is $8$, the first powers is $68$, the second powers is $748$, and the third powers is $9248$. Since they agree on kth powers, and polynomials are sums of kth powers, any cubic polynomial will have the desired property, i.e. the sum of its values on the first list will equal the sum of its values on the second list.

Further, you can show that this is the only way of splitting the numbers up to $16$ to have the desired property.

So to concretely answer your question: your partition would not work. Not every partition works - some very special partitions work.