返回题库

AIME 1987 · 第 12 题

AIME 1987 — Problem 12

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let mm be the smallest integer whose cube root is of the form n+rn+r, where nn is a positive integer and rr is a positive real number less than 1/10001/1000. Find nn.

解析

Solution 1

In order to keep mm as small as possible, we need to make nn as small as possible.

m=(n+r)3=n3+3n2r+3nr2+r3m = (n + r)^3 = n^3 + 3n^2r + 3nr^2 + r^3. Since r<11000r < \frac{1}{1000} and mn3=r(3n2+3nr+r2)m - n^3 = r(3n^2 + 3nr + r^2) is an integer, we must have that 3n2+3nr+r21r>10003n^2 + 3nr + r^2 \geq \frac{1}{r} > 1000. This means that the smallest possible nn should be less than 1000. In particular, 3nr+r23nr + r^2 should be less than 1, so 3n2>9993n^2 > 999 and n>333n > \sqrt{333}. 182=324<333<361=19218^2 = 324 < 333 < 361 = 19^2, so we must have n19n \geq 19. Since we want to minimize nn, we take n=19n = 19. Then for any positive value of rr, 3n2+3nr+r2>3192>10003n^2 + 3nr + r^2 > 3\cdot 19^2 > 1000, so it is possible for rr to be less than 11000\frac{1}{1000}. However, we still have to make sure a sufficiently small rr exists.

In light of the equation mn3=r(3n2+3nr+r2)m - n^3 = r(3n^2 + 3nr + r^2), we need to choose mn3m - n^3 as small as possible to ensure a small enough rr. The smallest possible value for mn3m - n^3 is 1, when m=193+1m = 19^3 + 1. Then for this value of mm, r=13n2+3nr+r2<11000r = \frac{1}{3n^2 + 3nr + r^2} < \frac{1}{1000}, and we're set. The answer is 019\boxed{019}.

Solution 2

To minimize mm, we should minimize nn. We have that (n+11000)3=n3+3103n2+3106n+1109(n + \frac{1}{1000})^3 = n^3 + \frac{3}{10^3} n^2 + \frac{3}{10^6} n + \frac{1}{10^9}. For a given value of nn, if (n+11000)3n3>1(n + \frac{1}{1000})^3 - n^3 > 1, there exists an integer between (n+11000)3(n + \frac{1}{1000})^3 and n3n^3, and the cube root of this integer would be between nn and n+11000n + \frac{1}{1000} as desired. We seek the smallest nn such that (n+11000)3n3>1(n + \frac{1}{1000})^3 - n^3 > 1.

(n+11000)3n3>1(n + \frac{1}{1000})^3 - n^3 > 1 3103n2+3106n+1109>1\frac{3}{10^3} n^2 + \frac{3}{10^6} n + \frac{1}{10^9} > 1 3n2+3103n+1106>1033n^2 + \frac{3}{10^3} n + \frac{1}{10^6} > 10^3 Trying values of nn, we see that the smallest value of nn that works is 019\boxed{019}.

Why is it (n+11000)3n3>1(n + \frac{1}{1000})^3 - n^3 > 1 and not greater than or equal to? - awesomediabrine

Because if its equal to, then there is no integer in between the two values. - resources

Solution 3 (Similar to Solution 2)

Since rr is less than 1/10001/1000, we have m3<n+11000\sqrt[3]{m} < n + \frac{1}{1000}. Notice that since we want mm minimized, nn should also be minimized. Also, n3n^3 should be as close as possible, but not exceeding mm. This means mm should be set to n3+1n^3+1. Substituting and simplifying, we get

n3+13<n+11000\sqrt[3]{n^3+1} < n + \frac{1}{1000} n3+1<n3+31000n2+310002n+110003n^3+1 < n^3+\frac{3}{1000}n^2+\frac{3}{1000^2}n+\frac{1}{1000^3} The last two terms in the right side can be ignored in the calculation because they are too small. This results in 1<31000n2n2>100031 < \frac{3}{1000}n^2 \Rightarrow n^2 > \frac{1000}{3}. The minimum positive integer nn that satisfies this is 019\boxed{019}. ~ Hb10

Solution 4 (Calculus)

Note that the cube root is increasing for positive reals while its derivative is decreasing, so linear approximation gives

n3+13n<dx3dxx=n3=13n2\sqrt[3]{n^3+1} - n < \left.\frac{d\sqrt[3]{x}}{dx}\right|_{x=n^3} = \frac{1}{3n^2} and

n3+13n>dx3dxx=n3+1=13(n3+1)23\sqrt[3]{n^3+1} - n > \left.\frac{d\sqrt[3]{x}}{dx}\right|_{x=n^3+1} = \frac{1}{3\sqrt[3]{(n^3+1)^2}} From this, it is clear that n=019n = \boxed{019} is the smallest nn for which LHS will be less than 11000\frac{1}{1000}. ~ Hyprox1413