SOLUTION: I have a three digit number such that the sum of the cubes of each digit gives the three digit number containing the same digits. Find my number.
I did, x^3 + y^3 + Z^3 = 100x
Algebra.Com
Question 876581: I have a three digit number such that the sum of the cubes of each digit gives the three digit number containing the same digits. Find my number.
I did, x^3 + y^3 + Z^3 = 100x + 10y + z
Answer by richard1234(7193) (Show Source): You can put this solution on YOUR website!
There are several:
153 (1^3 + 5^3 + 3^3 = 153)
370
371
407
The equation x^3 + y^3 + z^3 = 100x + 10y + z where x,y,z are digits is correct, but I don't think there's an easy algebraic solution (particularly when the correct numbers are 153, 370, 371, 407). It is far easier to write a computer program to solve it, since there are only 900 cases to check. The following Python code solves it (without _'s)
for i in range(1,10):
__for j in range(0,10):
____for k in range(0,10):
______n1 = i**3 + j**3 + k**3
______n2 = 100*i + 10*j + k
______if n1 == n2: print n2
RELATED QUESTIONS
Find the largest three digit number such that the number minus the sum of its digit is a... (answered by Edwin McCravy)
The tens digit of a three digit number is three times the units digit and the units digit (answered by ankor@dixie-net.com)
Find a three-digit number such that the hundreds’ digit minus the tens’ digit is 1,... (answered by math_tutor2020,ikleyn,MathTherapy)
what is the smallest three digit number that has a digit sum of... (answered by MathLover1)
A six-digit number is formed by repeating a three-digit number as in 639639. Find the sum (answered by ikleyn)
A six-digit number is formed by repeating a three-digit number as in 639639. Find the sum (answered by ikleyn)
a two digit number is three times the sum of each digit. If 45 is addad to the number,... (answered by mananth)
find a four-digit number such that this 4-digit number equal to three times of a... (answered by ankor@dixie-net.com)
There is a two-digit number between 20 and 30 such that the sum of the cubes of its... (answered by Alan3354)