返回题库

AIME 2002 II · 第 8 题

AIME 2002 II — Problem 8

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the least positive integer kk for which the equation 2002n=k\left\lfloor\frac{2002}{n}\right\rfloor=k has no integer solutions for nn. (The notation x\lfloor x\rfloor means the greatest integer less than or equal to xx.)

解析

Solutions

Solution 1

Note that if 2002n2002n+11\frac{2002}n - \frac{2002}{n+1}\leq 1, then either 2002n=2002n+1\left\lfloor\frac{2002}{n}\right\rfloor=\left\lfloor\frac{2002}{n+1}\right\rfloor, or 2002n=2002n+1+1\left\lfloor\frac{2002}{n}\right\rfloor=\left\lfloor\frac{2002}{n+1}\right\rfloor+1. Either way, we won't skip any natural numbers.

The greatest nn such that 2002n2002n+1>1\frac{2002}n - \frac{2002}{n+1} > 1 is n=44n=44. (The inequality simplifies to n(n+1)<2002n(n+1)<2002, which is easy to solve by trial, as the solution is obviously 2002\simeq \sqrt{2002}.)

We can now compute:

200245=44\left\lfloor\frac{2002}{45}\right\rfloor=44 200244=45\left\lfloor\frac{2002}{44}\right\rfloor=45 200243=46\left\lfloor\frac{2002}{43}\right\rfloor=46 200242=47\left\lfloor\frac{2002}{42}\right\rfloor=47 200241=48\left\lfloor\frac{2002}{41}\right\rfloor=48 200240=50\left\lfloor\frac{2002}{40}\right\rfloor=50 From the observation above (and the fact that 20022002=1\left\lfloor\frac{2002}{2002}\right\rfloor=1) we know that all integers between 11 and 4444 will be achieved for some values of nn. Similarly, for n<40n<40 we obviously have 2002n>50\left\lfloor\frac{2002}{n}\right\rfloor > 50.

Hence the least positive integer kk for which the equation 2002n=k\left\lfloor\frac{2002}{n}\right\rfloor=k has no integer solutions for nn is 049\boxed{049}.

Note

After getting that 200245=44\left\lfloor\frac{2002}{45}\right\rfloor=44, for ease of computation above, we can use the fact that (40+k)(49k)(40+k)(49-k) varies solely based on k2k^2 and checking these gives us that the pattern fails at k=0k=0 giving us 049\boxed{049} as the answer.

~Dhillonr25

Solution 2

Rewriting the given information and simplifying it a bit, we have

k2002n<k+1    1kn2002>1k+1.    2002kn>2002k+1.\begin{aligned} k \le \frac{2002}{n} < k+1 &\implies \frac{1}{k} \ge \frac{n}{2002} > \frac{1}{k+1}. \\ &\implies \frac{2002}{k} \ge n > \frac{2002}{k+1}. \end{aligned} Now note that in order for there to be no integer solutions to n,n, we must have 2002k=2002k+1.\left\lfloor \frac{2002}{k} \right\rfloor = \left\lfloor \frac{2002}{k+1} \right\rfloor. We seek the smallest such k.k. A bit of experimentation yields that k=49k=49 is the smallest solution, as for k=49,k=49, it is true that 200249=200250=40.\left\lfloor \frac{2002}{49} \right\rfloor = \left\lfloor \frac{2002}{50} \right\rfloor = 40. Furthermore, k=49k=49 is the smallest such case. (If unsure, we could check if the result holds for k=48,k=48, and as it turns out, it doesn't.) Therefore, the answer is 049.\boxed{049}.

Solution 3

In this solution we use inductive reasoning and a lot of trial and error. Depending on how accurately you can estimate, the solution will come quicker or slower.

Using values of kk as 1,2,3,4,1, 2, 3, 4, and 5,5, we can find the corresponding values of nn relatively easily. For k=1k = 1, nn is in the range [20021002][2002-1002]; for k=2k = 2, nn is the the range [1001668][1001-668], etc: 3,[667,501];4,[500401];5,[400334]3, [667,501]; 4, [500-401]; 5, [400-334]. For any positive integer k,nk, n is in a range of 2002k2002k+1\left\lfloor \frac{2002}{k} \right\rfloor -\left\lceil \frac{2002}{k+1} \right\rceil.

Now we try testing k=1002k = 1002 to get a better understanding of what our solution will look like. Obviously, there will be no solution for nn, but we are more interested in how the range will compute to. Using the formula we got above, the range will be 121-2. Testing any integer kk from 100220001002-2000 will result in the same range. Also, notice that each and every one of them have no solution for nn. Testing 10011001 gives a range of 222-2, and 20022002 gives 111-1. They each have a solution for nn, and their range is only one value. Therefore, we can assume with relative safety that the integer kk we want is the lowest integer that follows this equation

2002k+1=2002k+1\left\lfloor\frac{2002}{k}\right\rfloor + 1 = \left\lceil \frac{2002}{k+1}\right\rceil Now we can easily guess and check starting from k=1k = 1. After a few tests it's not difficult to estimate a few jumps, and it took me only a few minutes to realize the answer was somewhere in the forties (You could also use the fact that 452=202545^2=2025). Then it's just a matter of checking them until we get 049\boxed{049}. Alternatively, you could use the equation above and proceed with one of the other two solutions listed.

-jackshi2006

Edited and LaTeX\LaTeXed by PhunsukhWangdu

Solution 4

Here is an intuitive way to approximate the answer is around 4545: For the function f(n)=2002nf(n)=\frac{2002}{n} its derivative is 2002n2-\frac{2002}{n^2}, which should be close to 1-1 because we need to find the smallest skipped integer. The rest of the steps are the same as Solution 1.

-maxamc