MY TOP 5 AIME PROBLEMS OF ALL TIME
by shiningsunnyday, Mar 16, 2016, 4:52 AM
This was so hard to choose and type up all of my solutions! Oops I didn't put any geo questions in cause all the labelling and diagrams are fat. 
Number 5
Number 4
Number 3
Number 2
And here's...drumroll...
Number 1

Number 5
A triangular array of squares has one square in the first row, two in the second, and in general,
squares in the
th row for
With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in given diagram). In each square of the eleventh row, a
or a
is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of
's and
's in the bottom row is the number in the top square a multiple of
?
![[asy]
defaultpen(linewidth(0.7));
path p=origin--(1,0)--(1,1)--(0,1)--cycle;
int i,j;
for(i=0; i<12; i=i+1) {
for(j=0; j<11-i; j=j+1) {
draw(shift(i/2+j,i)*p);
}}[/asy]](//latex.artofproblemsolving.com/a/9/e/a9ec9f7a56632a3525823f27fd228f29c184c6ed.png)
Motivation
Solution








![[asy]
defaultpen(linewidth(0.7));
path p=origin--(1,0)--(1,1)--(0,1)--cycle;
int i,j;
for(i=0; i<12; i=i+1) {
for(j=0; j<11-i; j=j+1) {
draw(shift(i/2+j,i)*p);
}}[/asy]](http://latex.artofproblemsolving.com/a/9/e/a9ec9f7a56632a3525823f27fd228f29c184c6ed.png)
Motivation
Alright, so we want to relate something all the way on the bottom to the single number on the top. Wahh? Hm... we're not going to get anywhere by taking the
case head on. I mean,
is a boring number. As always, with counting problems, start with
Let the numbers on the bottom be
What is the number on the top in terms of these letters?




Solution
If you followed through with my hint, you'll realize that in terms of the bottom numbers, the top number is
I won't get down to the rigor, but this is a fantastic discovery!
In fact, the top number for
is
which we want to take the
of, which turns out to be
Lovely, all the middle terms cancel out because they're multiples of
. Since each of these four numbers are
or
, we either have
in which case we have just
way, or
in which case we have
ways.
But how about the other
numbers? They can be whatever they want, for a total of
ways! So the answer is 
As always, be ready to explore on the AIME.

In fact, the top number for











But how about the other



As always, be ready to explore on the AIME.

Number 4
What's the value of 
Motivation
Solution
So the summation becomes
Aha! We've found a way to rewrite the ugly cos summation in this way. We have an equation!


Motivation
Honestly, the majority of trig-identity problems on the AIME qualifies as number 4 on my top 5 favorites. Each question teaches you a new trick (which, unfortunately, pretty much ran out these days so there're less trig problems nowadays). This question is just to give an idea of how awesome trig problems are and how fun they are to play with.
In this particular case, the set up makes things like sum-to-product impossible (tried it), and the summations make top and bottom cancellation pretty much impossible. However, the identity
seems fun to play with. Play around!
In this particular case, the set up makes things like sum-to-product impossible (tried it), and the summations make top and bottom cancellation pretty much impossible. However, the identity

Solution

So the summation becomes


Number 3
The sequence
satisfies
and
for
. Find the greatest integer less than or equal to
.
Motivation
Solution





Motivation
For some reason these years there have been quite a lot of sequence problems late in the AIME (I don't recall ever seeing one that's pre-2000???), and most of them have involved some kind of wicked observation, which, although sometimes obscure, are what makes these problems awesome.
For this particular question, nothing jumped out to me. I was tempted to think it may involve the pythagorean theorem because of the square root because it's a pretty renowned trick by now -- see 2006 II #15, 1991 #15, for example. But the
in it doesn't make any sense. The next thing to try is some kind of trig substitution, and in this case it's utilizing the identity 
For this particular question, nothing jumped out to me. I was tempted to think it may involve the pythagorean theorem because of the square root because it's a pretty renowned trick by now -- see 2006 II #15, 1991 #15, for example. But the


Solution
Rewrite
and let
Making the substitution,

This looks much better. Now about the trig substitution... aha! The
and
s remind us of a
triangle! We can picture such a right triangle and define
and
Similarly, define 

Yes! Don't forget the
. Remember that when
is in
, we must take the negative root of
This is important!
This is an amazing discovery. Let's walk through the remaining steps carefully (be very careful with the signs). Since
is
, we take
to be positive, so
Similarly,
How big is
Well
so
, we can keep adding to get 
But
so
and hence we have to subtract
in our next move, so
Aha! When in
,
is even, we get
and
when
is odd. So 
When I looked at this I forgot about the
... 











Yes! Don't forget the




This is an amazing discovery. Let's walk through the remaining steps carefully (be very careful with the signs). Since









But










When I looked at this I forgot about the


Number 2
Find the largest integer
satisfying the following conditions:
(i)
can be expressed as the difference of two consecutive cubes;
(ii)
is a perfect square.
Motivation
Solution

(i)

(ii)

Motivation
This has got be the NT problem, and I don't think any other question comes close in terms of effectively using elementary number theory skills to solve a hard problem.
Motivation:
I assume you already set up the equations

or something of the sorts?
Our goal is to learn as much as we can about
. The second equation doesn't tell us much for now. You may think of substituting it in, but nothing clever comes out of it (no nice factorizing, etc.), so we start with the quadratic in
. This is a lovely trick. When you're dealing with a diophantine equation in a quadratic, the discriminant has to be a perfect square.
Motivation:
I assume you already set up the equations


Our goal is to learn as much as we can about


Solution
Alright, so by the discriminant,
is a perfect square. We'll like to use this fact, but
doesn't tell us a whole lot. Well, we do know that two consecutive odd integers are relatively prime (Euclidean algorithm), so we can start trial and error. But hey, we haven't used the second equation yet! Let's substitute it in.
We can factor it into
, which gives us much more info.
Now we would like
to give us a factor of
(since a mod check shows
can't be divisible by
), so we let 
Remember, the latter two factors are relatively prime, and yet they, when put together, form a perfect square. But divisors of perfect squares come in pairs, so we know that these two must each be relatively prime perfect squares themselves.
Let's work with the first guy.

The first factor is smaller than the second, and they must have the same parity. The only possibilities are
which yields
However, the second ordered pair doesn't work as
will no longer be a perfect square.
Remember that
and
Solving, we get
So the answer is
.
Beautiful problem. I wasn't able to solve it... darn I really need to take the Interm NT class this summer.




Now we would like





Remember, the latter two factors are relatively prime, and yet they, when put together, form a perfect square. But divisors of perfect squares come in pairs, so we know that these two must each be relatively prime perfect squares themselves.
Let's work with the first guy.

The first factor is smaller than the second, and they must have the same parity. The only possibilities are



Remember that




Beautiful problem. I wasn't able to solve it... darn I really need to take the Interm NT class this summer.

And here's...drumroll...
Number 1