返回题库

AIME 1990 · 第 15 题

AIME 1990 — Problem 15

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find ax5+by5ax^5 + by^5 if the real numbers a,b,x,a,b,x, and yy satisfy the equations

ax+by=3,ax2+by2=7,ax3+by3=16,ax4+by4=42.\begin{aligned} ax + by &= 3, \\ ax^2 + by^2 &= 7, \\ ax^3 + by^3 &= 16, \\ ax^4 + by^4 &= 42. \end{aligned}
解析

Solution 1

Set S=(x+y)S = (x + y) and P=xyP = xy. Then the relationship

(axn+byn)(x+y)=(axn+1+byn+1)+(xy)(axn1+byn1)(ax^n + by^n)(x + y) = (ax^{n + 1} + by^{n + 1}) + (xy)(ax^{n - 1} + by^{n - 1}) can be exploited:

(ax2+by2)(x+y)=(ax3+by3)+(xy)(ax+by)(ax3+by3)(x+y)=(ax4+by4)+(xy)(ax2+by2)\begin{aligned}(ax^2 + by^2)(x + y) & = & (ax^3 + by^3) + (xy)(ax + by) \\ (ax^3 + by^3)(x + y) & = & (ax^4 + by^4) + (xy)(ax^2 + by^2)\end{aligned} Therefore:

7S=16+3P16S=42+7P\begin{aligned}7S & = & 16 + 3P \\ 16S & = & 42 + 7P\end{aligned} Consequently, S=14S = - 14 and P=38P = - 38. Finally:

(ax4+by4)(x+y)=(ax5+by5)+(xy)(ax3+by3)(42)(S)=(ax5+by5)+(P)(16)(42)(14)=(ax5+by5)+(38)(16)ax5+by5=020\begin{aligned}(ax^4 + by^4)(x + y) & = & (ax^5 + by^5) + (xy)(ax^3 + by^3) \\ (42)(S) & = & (ax^5 + by^5) + (P)(16) \\ (42)( - 14) & = & (ax^5 + by^5) + ( - 38)(16) \\ ax^5 + by^5 & = & \boxed{020}\end{aligned}

Solution 2

A recurrence of the form Tn=ATn1+BTn2T_n=AT_{n-1}+BT_{n-2} will have the closed form Tn=axn+bynT_n=ax^n+by^n, where x,yx,y are the values of the starting term that make the sequence geometric, and a,ba,b are the appropriately chosen constants such that those special starting terms linearly combine to form the actual starting terms.

Suppose we have such a recurrence with T1=3T_1=3 and T2=7T_2=7. Then T3=ax3+by3=16=7A+3BT_3=ax^3+by^3=16=7A+3B, and T4=ax4+by4=42=16A+7BT_4=ax^4+by^4=42=16A+7B.

Solving these simultaneous equations for AA and BB, we see that A=14A=-14 and B=38B=38. So, ax5+by5=T5=14(42)+38(16)=020ax^5+by^5=T_5=-14(42)+38(16)= \boxed{020}.

Solution 3

Using factoring formulas, the terms can be grouped. First take the first three terms and sum them, getting:

a(x3+x2+x)+b(y3+y2+y)=16a(x^3 + x^2 + x) + b(y^3 + y^2 + y) = 16 ax(x31x1)+by(y31y1)=16ax\left( \frac{x^3-1}{x-1} \right) + by\left( \frac{y^3-1}{y-1} \right) = 16.

Similarly take the first two terms, yielding:

ax(x21x1)+by(y21y1)=10ax \left( \frac{x^2-1}{x-1} \right) + by \left( \frac{y^2-1}{y-1} \right) = 10.

Lastly take an alternating three-term sum,

a(x3x2+x)+b(y3y2+y)=12a(x^3 - x^2 + x) + b(y^3 - y^2 + y) = 12 ax(x3+1x+1)+by(y3+1y+1)=12ax \left( \frac{x^3+1}{x+1} \right) + by \left( \frac{y^3+1}{y+1} \right) = 12.

Now to get the solution, let the answer be kk, so

ax(x41x1)+by(y41y1)=68ax \left( \frac{x^4-1}{x-1} \right) + by \left(\frac{y^4-1}{y-1} \right) = 68.

Multiplying out this expression gets the answer term and then a lot of other expressions, which can be eliminated as done in the first solution.

~lpieleanu (reformatting and minor edits)

Solution 4

We first let the answer to this problem be k.k. Multiplying the first equation by xx gives ax2+bxy=3xax^2 + bxy=3x.

Subtracting this equation from the second equation gives by2bxy=73xby^2-bxy=7-3x. Similarly, doing the same for the other equations, we obtain: by2bxy=73xby^2-bxy=7-3x, by3bxy2=167xby^3-bxy^2=16-7x, by4bxy3=4216xby^4-bxy^3=42-16x, and by5bxy4=k42xby^5-bxy^4=k-42x

Now lets take the first equation. Multiplying this by yy and subtracting this from the second gives us by3bxy2=(73x)yby^3-bxy^2=(7-3x)y. We can also obtain by4bxy3=(167x)yby^4-bxy^3=(16-7x)y.

Now we can solve for xx and yy! (73x)y=167x(7-3x)y = 16-7x and (167x)y=4216x(16-7x)y=42-16x. Solving for xx and yy gives us (7+87,787)(-7+\sqrt{87},-7-\sqrt{87}) (It can be switched, but since the given equations are symmetric, it doesn't matter). k42x=(4216x)yk-42x= (42-16x)y, and solving for kk gives us k=020k= \boxed{020}.

~pi_is_3.141