返回题库

AIME 1996 · 第 3 题

AIME 1996 — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the smallest positive integer nn for which the expansion of (xy3x+7y21)n(xy-3x+7y-21)^n, after like terms have been collected, has at least 1996 terms.

解析

Solution 1

Using Simon's Favorite Factoring Trick, we rewrite as [(x+7)(y3)]n=(x+7)n(y3)n[(x+7)(y-3)]^n = (x+7)^n(y-3)^n. Both binomial expansions will contain n+1n+1 non-like terms; their product will contain (n+1)2(n+1)^2 terms, as each term will have an unique power of xx or yy and so none of the terms will need to be collected. Hence (n+1)21996(n+1)^2 \ge 1996, the smallest square after 19961996 is 2025=4522025 = 45^2, so our answer is 451=04445 - 1 = \boxed{044}.

Alternatively, when n=kn = k, the exponents of xx or yy in xiyix^i y^i can be any integer between 00 and kk inclusive. Thus, when n=1n=1, there are (2)(2)(2)(2) terms and, when n=kn = k, there are (k+1)2(k+1)^2 terms. Therefore, we need to find the smallest perfect square that is greater than 19961996. From trial and error, we get 442=193644^2 = 1936 and 452=202545^2 = 2025. Thus, k=45n=044k = 45\rightarrow n = \boxed{044}.

Solution 2 (Generating Functions)

Notice that the coefficients in the problem statement have no effect on how many unique terms there will be in the expansion. Therefore this problem is synonymous with finding the amount of terms in the expansion of (xy+x+y+1)n(xy+x+y+1)^n (we do this to simplify the problem).

If we expand the exponent the expression becomes (xy+x+y+1)(xy+x+y+1)(xy+x+y+1)n  times\underbrace{(xy+x+y+1)\cdot(xy+x+y+1)\cdots(xy+x+y+1)}_{n\;times}.

This is equivalent to starting off with a x0y0x^0y^0 terms and choosing between 44 options nn different times:

\bullet Adding nothing to either exponent (choosing 11).

\bullet Adding 11 to the xx exponent (choosing xx).

\bullet Adding 11 to the yy exponent (choosing yy).

\bullet Adding 11 to the xx exponent and adding 11 to the yy exponent (choosing xyxy).

Doing this nn times, you can see that you end up with a term in the form kxiyjk\cdot x^i\cdot y^j where kk is some coefficient (which we don't care about) and 0i,jn0\le i,j\le n and i,jNi,j \in \mathbb{N}.

Repeating this for all possible combinations of choices yields n+1n+1 options for each of ii and jj which means there are a total of (n+1)2(n+1)^2 possible terms in the form xiyjx^i\cdot y^j. Therefore (xy+x+y+1)n(xy+x+y+1)^n has (n+1)2(n+1)^2 terms.

(n+1)21996(n+1)^2 \ge 1996 which yields n=44n=44. 044\boxed{044}

~coolishu