返回题库

AIME 1991 · 第 1 题

AIME 1991 — Problem 1

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find x2+y2x^2+y^2_{} if xx_{}^{} and yy_{}^{} are positive integers such that

xy+x+y=71,x2y+xy2=880.\begin{aligned} xy+x+y&=71, \\ x^2y+xy^2&=880. \end{aligned}
解析

Solution 1

Define a=x+ya = x + y and b=xyb = xy. Then a+b=71a + b = 71 and ab=880ab = 880. Solving these two equations yields a quadratic: a271a+880=0a^2 - 71a + 880 = 0, which factors to (a16)(a55)=0(a - 16)(a - 55) = 0. Either a=16a = 16 and b=55b = 55 or a=55a = 55 and b=16b = 16. For the first case, it is easy to see that (x,y)(x,y) can be (5,11)(5,11) (or vice versa). In the second case, since all factors of 1616 must be 16\le 16, no two factors of 1616 can sum greater than 3232, and so there are no integral solutions for (x,y)(x,y). The solution is 52+112=1465^2 + 11^2 = \boxed{146}.

Solution 2

Since xy+x+y+1=72xy + x + y + 1 = 72, this can be factored to (x+1)(y+1)=72(x + 1)(y + 1) = 72. As xx and yy are integers, the possible sets for (x,y)(x,y) (ignoring cases where x>yx > y since it is symmetrical) are (1,35), (2,23), (3,17), (5,11), (7,8)(1, 35),\ (2, 23),\ (3, 17),\ (5, 11),\ (7,8). The second equation factors to (x+y)xy=880=24511(x + y)xy = 880 = 2^4 \cdot 5 \cdot 11. The only set with a factor of 1111 is (5,11)(5,11), and checking shows that it is correct.

Solution 3

Let a=x+ya=x+y, b=xyb=xy then we get the equations

a+b=71ab=880\begin{aligned} a+b&=71\\ ab&=880 \end{aligned} After finding the prime factorization of 880=24511880=2^4\cdot5\cdot11, it's easy to obtain the solution (a,b)=(16,55)(a,b)=(16,55). Thus

x2+y2=(x+y)22xy=a22b=162255=146x^2+y^2=(x+y)^2-2xy=a^2-2b=16^2-2\cdot55=\boxed{146} Note that if (a,b)=(55,16)(a,b)=(55,16), the answer would exceed 999999 which is invalid for an AIME answer. ~ Nafer

Solution 4

From the first equation, we know x+y=71xyx+y=71-xy. We factor the second equation as xy(71xy)=880xy(71-xy)=880. Let a=xya=xy and rearranging we get a271a+880=(a16)(a55)=0a^2-71a+880=(a-16)(a-55)=0. We have two cases: (1) x+y=16x+y=16 and xy=55xy=55 OR (2) x+y=55x+y=55 and xy=16xy=16. We find the former is true for (x,y)=(5,11)(x,y) = (5,11). x2+y2=121+25=146x^2+y^2=121+25=146.

Solution 5

First, notice that you can factor x2y+xy2x^2y + xy^2 as xy(x+y)xy(x + y). From this, we notice that xyxy and x+yx + y is a common occurrence, so that lends itself to a simple solution by substitution. Let xy=bxy = b and x+y=ax + y = a. From this substitution, we get the following system:

a+b=71a + b = 71 ab=880ab = 880 Solving that system gives us the following two pairs (a,b)(a, b): (16,55)(16, 55) and (55,16)(55, 16). The second one is obviously too big as 55255^2 is clearly out of bounds for an AIME problem (More on that later). Therefore, we proceed with substituting back the pair (16,55)(16, 55). This means that x+y=16x + y = 16 and xy=55xy = 55 Then, instead of solving the system, we can do a clever manipulation by squaring x+yx + y. Doing so, we get:

(x+y)2=(x2+y2)+2xy(x + y)^2 = (x^2 + y^2) + 2xy We see that in this form, we can substitute everything in except for (x2+y2)(x^2 + y^2), which is the desired answer. Substituting, we get:

256=(x2+y2)+110256 = (x^2 + y^2) + 110 so x2+y2=146x^2 + y^2 = \boxed{146}. (If we were to go with the pair (55,16)(55, 16), then the (x+y)2(x + y)^2 would be absurdly out of bounds)

~EricShi1685