返回题库

AIME 1986 · 第 5 题

AIME 1986 — Problem 5

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

What is the largest positive integer nn for which n3+100n^3+100 is divisible by n+10n+10?

Video Solution by OmegaLearn

https://youtu.be/zfChnbMGLVQ?t=1458

~ pi_is_3.14

https://youtu.be/TA_Ug1-qBCU

~ momeme

https://www.youtube.com/watch?v=r2Xpd8Dj1X8

- DARSHSHETTY4

解析

Solution 1

If n+10n3+100n+10 \mid n^3+100, gcd(n3+100,n+10)=n+10\gcd(n^3+100,n+10)=n+10. Using the Euclidean algorithm, we have gcd(n3+100,n+10)=gcd(10n2+100,n+10)\gcd(n^3+100,n+10)= \gcd(-10n^2+100,n+10) =gcd(100n+100,n+10)= \gcd(100n+100,n+10) =gcd(900,n+10)= \gcd(-900,n+10), so n+10n+10 must divide 900900. The greatest integer nn for which n+10n+10 divides 900900 is 890\boxed{890}; we can double-check manually and we find that indeed 9008903+100900\mid 890^3+100.

Solution 2 (Simple)

Let n+10=kn+10=k, then n=k10n=k-10. Then n3+100=k330k2+300k900n^3+100 = k^3-30k^2+300k-900 Therefore, 900900 must be divisible by kk, which is largest when k=900k=900 and n=890n=\boxed{890}

Solution 3

In a similar manner, we can apply synthetic division. We are looking for n3+100n+10=n210n+100900n+10\frac{n^3 + 100}{n + 10} = n^2 - 10n + 100 - \frac{900}{n + 10}. Again, n+10n + 10 must be a factor of 900n=890900 \Longrightarrow n = \boxed{890}.

Solution 4

The key to this problem is to realize that n+10n3+1000n+10 \mid n^3 +1000 for all nn. Since we are asked to find the maximum possible nn such that n+10n3+100n+10 \mid n^3 +100, we have: n+10((n3+1000)(n3+100)n+10900n+10 \mid ((n^3 +1000) - (n^3 +100) \longrightarrow n+10 \mid 900. This is because of the property that states that if aba \mid b and aca \mid c, then ab±ca \mid b \pm c. Since, the largest factor of 900 is itself we have: n+10=900n=890n+10=900 \Longrightarrow \boxed{n = 890}

~qwertysri987

Solution 5 (Easy Modular Arithmetic)

Notice that n10(modn+10)n\equiv -10 \pmod{n+10}. Therefore

0n3+100(10)3+100=900(modn+10)n+10900maxn+10n3+100n=890.0 \equiv n^3+100\equiv(-10)^3+100=-900 \pmod{n+10} \Rightarrow n+10 | 900 \Rightarrow \max_{n+10 | n^3+100} {n} = \boxed{890}. ~asops

Solution 6 (Easiest Factor)

In the problem, we can see that n3+100n^3 + 100 has a cube. Immediately think of sum of cubes, which leads us to add 900, resulting in (n3+103)900(n^3 + 10^3) - 900 --> (n+10)(n210n+100)900(n+10)(n^2 - 10n + 100) - 900. Since the (n+10)(n210n+100)(n+10)(n^2 - 10n + 100) contains (n+10)(n+10), this part is divisible by n+10n+10 --> therefore the 900 must be divisible by n+10n+10. The largest nn that satisfies this is 90010=890900-10 = \boxed{890}.