Solution 1
If n+10∣n3+100, gcd(n3+100,n+10)=n+10. Using the Euclidean algorithm, we have gcd(n3+100,n+10)=gcd(−10n2+100,n+10) =gcd(100n+100,n+10) =gcd(−900,n+10), so n+10 must divide 900. The greatest integer n for which n+10 divides 900 is 890; we can double-check manually and we find that indeed 900∣8903+100.
Solution 2 (Simple)
Let n+10=k, then n=k−10. Then n3+100=k3−30k2+300k−900 Therefore, 900 must be divisible by k, which is largest when k=900 and n=890
Solution 3
In a similar manner, we can apply synthetic division. We are looking for n+10n3+100=n2−10n+100−n+10900. Again, n+10 must be a factor of 900⟹n=890.
Solution 4
The key to this problem is to realize that n+10∣n3+1000 for all n. Since we are asked to find the maximum possible n such that n+10∣n3+100, we have: n+10∣((n3+1000)−(n3+100)⟶n+10∣900. This is because of the property that states that if a∣b and a∣c, then a∣b±c. Since, the largest factor of 900 is itself we have: n+10=900⟹n=890
~qwertysri987
Solution 5 (Easy Modular Arithmetic)
Notice that n≡−10(modn+10). Therefore
0≡n3+100≡(−10)3+100=−900(modn+10)⇒n+10∣900⇒n+10∣n3+100maxn=890.
~asops
Solution 6 (Easiest Factor)
In the problem, we can see that n3+100 has a cube. Immediately think of sum of cubes, which leads us to add 900, resulting in (n3+103)−900 --> (n+10)(n2−10n+100)−900. Since the (n+10)(n2−10n+100) contains (n+10), this part is divisible by n+10 --> therefore the 900 must be divisible by n+10. The largest n that satisfies this is 900−10=890.