Find all integers n for which this fraction is an integer

AI Thread Summary
The discussion focuses on finding integer values of n for which the expression (n^3 + 2010) / (n^2 + 2010) results in an integer. The only straightforward solutions identified are n = 0 and n = 1. It is noted that no integers satisfy the condition n^3 + 2010 = 0. Participants suggest using programming to brute force potential solutions. The conversation emphasizes the challenge of identifying additional integer solutions beyond the obvious ones.
mr.green717
Messages
2
Reaction score
0
Find all integers n for which the fraction n ^ 3 + 2010 / (n ^ 2 + 2010) is equal to integer.

please I need help :( Thank you
 
Physics news on Phys.org


Which values immediately come to your mind?
 


0 and 1
 


Right, those are the only two that are easy to find. Another possibility would have been to find an integer such that n^3 + 2010=0 but there are none. If you have any programming skill you could try and brute force it with a relatively easy to implement algorithm.
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top