返回题库

AIME 2010 I · 第 5 题

AIME 2010 I — Problem 5

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Positive integers aa, bb, cc, and dd satisfy a>b>c>da > b > c > d, a+b+c+d=2010a + b + c + d = 2010, and a2b2+c2d2=2010a^2 - b^2 + c^2 - d^2 = 2010. Find the number of possible values of aa.

解析

Solution 1

Using the difference of squares, 2010=(a2b2)+(c2d2)=(a+b)(ab)+(c+d)(cd)a+b+c+d=20102010 = (a^2 - b^2) + (c^2 - d^2) = (a + b)(a - b) + (c + d)(c - d) \ge a + b + c + d = 2010, where equality must hold so b=a1b = a - 1 and d=c1d = c - 1. Then we see a=1004a = 1004 is maximal and a=504a = 504 is minimal, so the answer is 501\boxed{501}.

Note: We can also find that b=a1b=a-1 in another way. We know

a2b2+c2d2=(a+b)+(c+d)    (a+b)(ab)(a+b)+(c+d)(cd)(c+d)=0    (a+b)(ab1)+(c+d)(cd1)=0a^{2} - b^{2} + c^{2} - d^{2}=(a+b)+(c+d) \implies (a+b)(a-b)-(a+b)+(c+d)(c-d)-(c+d)=0 \implies (a+b)(a-b-1)+(c+d)(c-d-1)=0 Therefore, one of (a+b)(ab1)(a+b)(a-b-1) and (c+d)(cd1)(c+d)(c-d-1) must be 0,0, because they are both non-negative if ab+1a \geq b + 1 and cd+1c \geq d + 1, which is the initial condition. Clearly, a+b0a+b \neq 0 since then one would be positive and negative, or both would be zero. Therefore, ab1=0a-b-1=0 so a=b+1a=b+1. Similarly, we can deduce that c=d+1.c=d+1.

~Edited by mathwizard123123

Solution 2

Since a+ba+b must be greater than 10051005, it follows that the only possible value for aba-b is 11 (otherwise the quantity a2b2a^2 - b^2 would be greater than 20102010). Therefore the only possible ordered pairs for (a,b)(a,b) are (504,503)(504, 503), (505,504)(505, 504), ... , (1004,1003)(1004, 1003), so aa has 501\boxed{501} possible values. Hence the answer is 500+1=501

Solution 3 (Substitution of Differences)

Let x=abx = a-b, y=bcy = b-c, and z=cdz = c-d. Since a>b>c>d1a > b > c > d \ge 1, then x,y,zx, y, z are positive integers.

Rewrite the second equation using a2b2=(a+b)(ab)a^2 - b^2 = (a+b)(a-b) and c2d2=(c+d)(cd)c^2 - d^2 = (c+d)(c-d):

x(a+b)+z(c+d)=2010x(a+b) + z(c+d) = 2010 Since a+b+c+d=2010a+b+c+d = 2010, we can substitute c+d=2010(a+b)c+d = 2010 - (a+b):

x(a+b)+z(2010(a+b))=2010    (xz)(a+b)=2010(1z)x(a+b) + z(2010 - (a+b)) = 2010 \implies (x-z)(a+b) = 2010(1-z) Case 1: z>1z > 1

If z2z \ge 2, then 1z1-z is negative. For the LHS to be negative, we need z>xz > x. However, even at minimum values (x=1,z=2,a+b=1007x=1, z=2, a+b=1007), the magnitude of the LHS (12)1007|(1-2)1007| is far less than 2010(12)|2010(1-2)|.

Case 2: z=1z = 1

If z=1z = 1, the RHS becomes 00. Since a+b>0a+b > 0, we must have xz=0    x=1x-z = 0 \implies x = 1.

Thus, ab=1a-b = 1 and cd=1c-d = 1.

Finding the Range of aa:

Substitute b=a1b=a-1 and d=c1d=c-1 into the sum:

2a+2c2=2010    a+c=10062a + 2c - 2 = 2010 \implies a + c = 1006 Using the sequence a>a1>c>c11a > a-1 > c > c-1 \ge 1:

a1>c    a1>1006a    2a>1007    a504a-1 > c \implies a-1 > 1006 - a \implies 2a > 1007 \implies a \ge 504 c11    1006a2    a1004c-1 \ge 1 \implies 1006 - a \ge 2 \implies a \le 1004

Total values = 1004 - 504 + 1 = 501\boxed{501}

~LI,CHENXI