返回题库

AIME 1998 · 第 2 题

AIME 1998 — Problem 2

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the number of ordered pairs (x,y)(x,y) of positive integers that satisfy x2y60x \le 2y \le 60 and y2x60y \le 2x \le 60.

解析

Solution

Solution 1

AIME diagram

Pick's theorem states that:

A=I+B21A = I + \frac B2 - 1

The conditions give us four inequalities: x30x \le 30, y30y\le 30, x2yx \le 2y, y2xy \le 2x. These create a quadrilateral, whose area is 12\frac 12 of the 30 by 30 square it is in. A simple way to see this is to note that the two triangles outside of the quadrilateral form half of the area of the 30 by 30 square.

So A=12302=450A = \frac 12 \cdot 30^2 = 450. BB we can calculate by just counting. Ignoring the vertices, the top and right sides have 14 lattice points, and the two diagonals each have 14 lattice points (for the top diagonal, every value of xx corresponds with an integer value of yy as y=2xy = 2x and vice versa for the bottom, so and there are 14 values for x not counting vertices). Adding the four vertices, there are 60 points on the borders.

450=I+6021450 = I + \frac {60}2 - 1 I=421I = 421

Since the inequalities also include the equals case, we include the boundaries, which gives us 421+60=481421 + 60 = 481 ordered pairs. However, the question asks us for positive integers, so (0,0)(0,0) doesn't count; hence, the answer is 480480.

Solution 2

First, note that all pairs of the form (a,a)(a,a), 1a301\le a\le30 work.

Now, considered the ordered pairs with x<yx < y, so that x<2yx < 2y is automatically satisfied. Since x<y2xx < y\le 2x, there are 2xx=x2x - x = x possible values of yy. Hence, given xx, there are xx values of possible yy for which x<yx < y and the above conditions are satisfied. But 2y602y\le60, so this only works for x15x\le15. Thus, there are

i=115i=(15)(16)2\sum_{i=1}^{15} i=\frac{(15)(16)}{2}

ordered pairs. For x>15x > 15, yy must follow x<y30x < y\le 30. Hence, there are 30x30 - x possibilities for yy, and there are

i=1630(30i)=i=014i=(14)(15)2\sum_{i=16}^{30}(30-i)=\sum_{i=0}^{14}i=\frac{(14)(15)}{2}

ordered pairs.

By symmetry, there are also (15)(16)2+(14)(15)2\frac {(15)(16)}{2} + \frac {(14)(15)}{2} ordered pairs with x>yx > y and the above criteria satisfied.

Hence, the total is

(15)(16)2+(14)(15)2+(15)(16)2+(14)(15)2+30=480.\frac{(15)(16)}{2}+\frac{(14)(15)}{2}+\frac{(15)(16)}{2}+\frac{(14)(15)}{2}+30=480.

Solution 3

y2x60y\le2x\le60

Multiplying both sides by 2 yields:

2y4x1202y\le4x\le120

Then the two inequalities can be merged to form the following inequality:

x2y4x120x\le2y\le4x\le120

Additionally, we must ensure that 2y<602y<60

Therefore we must find pairs (x,y)(x,y) that satisfy the inequality above. A bit of trial and error and observing patterns leads to the answer 480480.

It should be noted that the cases for x15x\le15 and x>15x>15 should be considered separately in order to ensure that 2y<602y < 60.

Solution 4 - Unrigorous engineers induction solution

We will try out small cases.

By replacing 60 in this problem with 2, we count only 1 ordered pair. By doing with 4, we count 4 ordered pairs. With 6, we get 7 pairs. With 8 we get 12. By continuing on, and then finding the difference between adjacent terms (1,3,3,5,5,...). We suspect that if 60 was replaced with 2n, we will find 1+3+3+5+5+7+7 ...., where there will be n terms. Thus, our answer is 1+3+3+5+5.... 29+29+31 = 16*30 = 480.

-Alexlikemath

Solution 5 - Counting Head on

Notice xx and yy both must be equal or less than 30. The inequalities given have no complicated qualities. We can recompile them by understanding: Two times the larger integer will also be larger than the smaller integer; Two times the smaller integer is greater or equal to the greater integer if and only if the greater integer is less or equal to the double of the smaller integer. Knowing this, we create a chart. We will first solve without order, then multiply pairs by 2 at the end. xx can be 1-30, so we'll start with 1. The only possible value for yy is 1. For x=2x = 2, yy can be 2-4. For x=3x = 3, yy can be 3-6. There is an obvious pattern here. For every integer after 1, the possible values for yy will be numbers xx-2x2x. This predictably ends at x=15x = 15 because yy will reach 30. When x=16x = 16, then the number of possible values of yy will begin to drop again, equaling the amount when x=14x = 14. Then when we finally sum the group together, for x=2x = 2 to x=14x = 14 there are 104 pairs with 2 distinct values, and 13 values with congruent values. These will not be multiplied by 2 later on. x=16x = 16 to x=28x = 28 gives the same amount. Then x=15x = 15 and x=29x = 29 gives 16 and 2 values respectively, with two congruent values each. Finally, x=1x = 1 and x=30x = 30 give 3 and 1 respectively.

Sum them together and you will get 480.

-jackshi2006