Let C be the coefficient of x2 in the expansion of the product (1−x)(1+2x)(1−3x)⋯(1+14x)(1−15x). Find ∣C∣.
解析
Solutions
Solution 1
Let our polynomial be P(x).
It is clear that the coefficient of x in P(x) is −1+2−3+…+14−15=−8, so P(x)=1−8x+Cx2+Q(x), where Q(x) is some polynomial divisible by x3.
Then P(−x)=1+8x+Cx2+Q(−x) and so P(x)⋅P(−x)=1+(2C−64)x2+R(x), where R(x) is some polynomial divisible by x3.
However, we also know P(x)⋅P(−x)=(1−x)(1+x)(1+2x)(1−2x)⋯(1−15x)(1+15x)=(1−x2)(1−4x2)⋯(1−225x2)=1−(1+4+…+225)x2+R(x).
Equating coefficients, we have 2C−64=−(1+4+…+225)=−1240, so −2C=1176 and ∣C∣=588.
Solution 2
Let S be the set of integers {−1,2,−3,…,14,−15}. The coefficient of x2 in the expansion is equal to the sum of the product of each pair of distinct terms, or C=∑1≤i=j15SiSj. Also, we know that
(i=1∑nSi)2(−8)2=(i=1∑nSi2)+21≤i=j∑15SiSj=615(15+1)(2⋅15+1)+2C
where the left-hand sum can be computed from:
∑i=115Si=S15+(∑i=17S2i−1+S2i)=−15+7=−8
and the right-hand sum comes from the formula for the sum of the first n perfect squares. Therefore, ∣C∣=264−1240=588.
Solution 3 (Bash)
Consider the set [−1,2,−3,4,−5,6,−7,8,−9,10,−11,12,−13,14,−15]. Denote by S all size 2 subsets of this set. Replace each element of S by the product of the elements. Now, the quantity we seek is the sum of each element. Since consecutive elements add to 1 or −1, we can simplify this to 588
Solution 4 (Easy)
We know that this polynomial has roots 1,−21,31,… and the coefficient of x2 will be the sum of the product taken by 13. However, since this is closer to the constant side, we can create a new polynomial with the reciprocal roots which will make C the coefficient of x13 and thus the sum of the reciprocal roots taken by 2. We can calculate this with 1⋅(8−1)−2⋅(8−(−2))+…+15(8−15). This will give us 2C=−1176 giving us a final answer of ∣C∣=588.
~ Vedoral
Solution 4.5 (Easier Explanation)
In this polynomial, we can see that by Vieta’s Formulae, the coefficient of x2 is the sum of the products of every 13 of the roots. Let us denote the roots as r1,r2,…,r15.
Then, by Vieta’s, we have the sum:
r1r2…r13+⋯+r3r4…r15
Also, since we know that the product of the roots is 1 (again by Vieta’s Formulae), we can rewrite an arbitrary term of this expression. For example, the term r1r2…r13 is equal to:
r14r15r1r2…r15=r14r151
Now we are just finding the value of the expression, because this is just an expansion of:
2(r11+⋯+r151)2−(r121+⋯+r1521)
Which evaluates to:
8⋅2147=588
~eqb5000, minor latex fixes and spelling
Solution 4
Let set N be {−1,−3,…−15} and set P be {2,4,…14}. The sum of the negative x2 coefficients is the sum of the products of the elements in all two element sets such that one element is from N and the other is from P. Each summand is a term in the expansion of
(−1−3−…−15)(2+4+…+14)
which equals −56∗64=−(602−42)=−3584. The sum of the positive x2 coefficients is the sum of the products of all two element sets such that the two elements are either both in N or both in P. By counting, the sum is 2992, so the sum of all x2 coefficients is −588. Thus, the answer is 588.
Solution 5
We can find out the coefficient of x2 by multiplying every pair of two coefficients for x. This means that we multiply −1 by 2,−3,4,−5,6,−7,8,−9,10,−11,12,−13,14,−15 and 2 by 3,4,−5,6,−7,8,−9,10,−11,12,−13,14,−15. and etc. This sum can be easily simplified and is equal to (−1)(−7)+(−3)(−6)+(−5)(−5)+(−7)(−4)+(−9)(−3)+(−11)(−2)+(−13)(−1)+2(−9)+4(−10)+6(−11)+8(−12)+10(−13)+12(−14)+14(−15) or 588.
-David Camacho
Solution 6
This is just another way of summing the subsets of 2 from [−1,2,−3,4,−5,6,−7,8,−9,10,−11,12,−13,14,−15]. Start from the right and multiply -15 to everything on its left. Use the distributive property and add all the 14 integers together to get 7. This gives us −15∗7. Doing this for 14 gives us 14∗−7, and for -13 we get −13∗6. This pattern repeats where every two integers will multiple 7, 6,... to 0. Combining and simplifying the pattern give us this: −(29∗7+25∗6+21∗5+17∗4+13∗3+9∗2+5∗1). The expression gives us -588, or C=588. This is a good solution because it guarantees we never add a product twice, and the pattern is simple to add by hand.
-jackshi2006
Solution 7
We expand and obtain (x−1)(2x−1)(3x−1)⋯(15x−1)=1307674368000x15−948550176000x14−689324826240x13+2733483288464x12+82808260416x11−23038684088x10−3811851848x9+828730833x8+81228128x7−14661124x6−853104x5+132902x4+4256x3−588x2−8x+1.
Do not do this in an actual competition.
~Sliced_Bread
Solution 8 (Bash Yay!)
Notice a pattern betweenthe x cooeficient and the x^2
x {-1,1, -2, 2, -3, 3..}
And then we can bash out the x^2 terms absolute value: