返回题库

AIME 2013 I · 第 10 题

AIME 2013 I — Problem 10

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

There are nonzero integers aa, bb, rr, and ss such that the complex number r+sir+si is a zero of the polynomial P(x)=x3ax2+bx65P(x)={x}^{3}-a{x}^{2}+bx-65. For each possible combination of aa and bb, let pa,b{p}_{a,b} be the sum of the zeros of P(x)P(x). Find the sum of the pa,b{p}_{a,b}'s for all possible combinations of aa and bb.

解析

Solution

Since r+sir+si is a root, by the Complex Conjugate Root Theorem, rsir-si must be the other imaginary root. Using qq to represent the real root, we have

(xq)(xrsi)(xr+si)=x3ax2+bx65(x-q)(x-r-si)(x-r+si) = x^3 -ax^2 + bx -65

Applying difference of squares, and regrouping, we have

(xq)(x22rx+(r2+s2))=x3ax2+bx65(x-q)(x^2 - 2rx + (r^2 + s^2)) = x^3 -ax^2 + bx -65

So matching coefficients, we obtain

q(r2+s2)=65q(r^2 + s^2) = 65 b=r2+s2+2rqb = r^2 + s^2 + 2rq a=q+2ra = q + 2r

By Vieta's each pa,b=a{p}_{a,b} = a so we just need to find the values of aa in each pair. We proceed by determining possible values for qq, rr, and ss and using these to determine aa and bb.

If q=1q = 1, r2+s2=65r^2 + s^2 = 65 so (r, s) = (±1,±8),(±8,±1),(±4,±7),(±7,±4)(\pm1, \pm 8), (\pm8, \pm 1), (\pm4, \pm 7), (\pm7, \pm 4)

Similarly, for q=5q = 5, r2+s2=13r^2 + s^2 = 13 so the pairs (r,s)(r,s) are (±2,±3),(±3,±2)(\pm2, \pm 3), (\pm3, \pm 2)

For q=13q = 13, r2+s2=5r^2 + s^2 = 5 so the pairs (r,s)(r,s) are (±2,±1),(±1,±2)(\pm2, \pm 1), (\pm1, \pm 2)

Now we can disregard the plus minus signs for s because those cases are included as complex conjugates of the counted cases. The positive and negative values of r will cancel, so the sum of the pa,b=a{p}_{a,b} = a for q=1q = 1 is qq times the number of distinct rr values (as each value of rr generates a pair (a,b)(a,b)). Our answer is then (1)(8)+(5)(4)+(13)(4)=080(1)(8) + (5)(4) + (13)(4) = \boxed{080}.

Remark:

The complex conjugate theorem states that a polynomial with real coefficients must have an even amount of complex numbers. One of them is the complex number a+bia + bi, and the other is it's conjugate, or abia - bi. These, when multiplied cancel out and become real numbers (a2+b2a^2 + b^2). Similar logic for addition.

~Aarav22