Let m be the smallest integer whose cube root is of the form n+r, where n is a positive integer and r is a positive real number less than 1/1000. Find n.
解析
Solution 1
In order to keep m as small as possible, we need to make n as small as possible.
m=(n+r)3=n3+3n2r+3nr2+r3. Since r<10001 and m−n3=r(3n2+3nr+r2) is an integer, we must have that 3n2+3nr+r2≥r1>1000. This means that the smallest possible n should be less than 1000. In particular, 3nr+r2 should be less than 1, so 3n2>999 and n>333. 182=324<333<361=192, so we must have n≥19. Since we want to minimize n, we take n=19. Then for any positive value of r, 3n2+3nr+r2>3⋅192>1000, so it is possible for r to be less than 10001. However, we still have to make sure a sufficiently small r exists.
In light of the equation m−n3=r(3n2+3nr+r2), we need to choose m−n3 as small as possible to ensure a small enough r. The smallest possible value for m−n3 is 1, when m=193+1. Then for this value of m, r=3n2+3nr+r21<10001, and we're set. The answer is 019.
Solution 2
To minimize m, we should minimize n. We have that (n+10001)3=n3+1033n2+1063n+1091. For a given value of n, if (n+10001)3−n3>1, there exists an integer between (n+10001)3 and n3, and the cube root of this integer would be between n and n+10001 as desired. We seek the smallest n such that (n+10001)3−n3>1.
(n+10001)3−n3>11033n2+1063n+1091>13n2+1033n+1061>103
Trying values of n, we see that the smallest value of n that works is 019.
Why is it (n+10001)3−n3>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 r is less than 1/1000, we have 3m<n+10001. Notice that since we want m minimized, n should also be minimized. Also, n3 should be as close as possible, but not exceeding m. This means m should be set to n3+1. Substituting and simplifying, we get
3n3+1<n+10001n3+1<n3+10003n2+100023n+100031
The last two terms in the right side can be ignored in the calculation because they are too small. This results in 1<10003n2⇒n2>31000. The minimum positive integer n that satisfies this is 019. ~ Hb10
Solution 4 (Calculus)
Note that the cube root is increasing for positive reals while its derivative is decreasing, so linear approximation gives
3n3+1−n<dxd3xx=n3=3n21
and
3n3+1−n>dxd3xx=n3+1=33(n3+1)21
From this, it is clear that n=019 is the smallest n for which LHS will be less than 10001. ~ Hyprox1413