SOLUTION: There is a 3 digit number with each digit a different number. The sum of the digits is a perfect square. The sum of the first digit and the number made by the second and third digi
Algebra.Com
Question 486564: There is a 3 digit number with each digit a different number. The sum of the digits is a perfect square. The sum of the first digit and the number made by the second and third digit is a perfect square.The product of the first digit and the number made by the second and third digit is a perfect square. What is the three digit number
Answer by ankor@dixie-net.com(22740) (Show Source): You can put this solution on YOUR website!
No one seems to want to solve this problem and I haven't had much luck either but I wrote a basic problem to solve it
:
Run this Basic program
:
2 print " A program to find a 3 digit number where: Sum of the 3 digit is a perfect square"
4 print " The sum of the 1st digit & the number formed by the other two digits is a perfect square"
6 print " And the 1st digit times the number formed by the other digits is a perfect square also"
8 print: print
10 For a = 1 to 9
20 For b = 1 to 9
30 For c = 1 to 9
40 s = a+b+c
60 If SQR(s) = INT(SQR(s)) then 500
70 next c
80 next b
90 next a
95 end
100 print " ";a; b; c;" Is the number":end
500 u = a+(10*b)+c
510 if SQR(u) = INT(SQR(u)) then 600
520 goto 70
600 v = a*((10*b)+c)
610 if SQR(v) = INT(SQR(v)) then 100
629 goto 70
:
The results: 916 is the 3 digit number
RELATED QUESTIONS
1) There exists a 5 digit number N with distinct and non-zero digits such that it equals... (answered by Edwin McCravy)
Find the largest three digit number such that the number minus the sum of its digit is a... (answered by Edwin McCravy)
I am a 3 number. All of my digits are ODD numbers and each digit is different. The sum of (answered by richard1234)
A two digit number has different digits. If the difference between the square of the... (answered by drk,Edwin McCravy)
1. what is the number 10 less than the product of our largest two different digits?... (answered by edjones)
Randy writes down a 5-digit number whose digits are all different, and whose first digit
(answered by ikleyn)
The sum of the digits of a two-digit number is 13. The tens digit is seventeen
less... (answered by ikleyn,josgarithmetic)
there is a two digit no. Such that sum of its digit is 6 while the product of digits (answered by ewatrrr)
I am a 3 digit square number. The sum of my digits is 17. What number am... (answered by Fombitz)