document.write( "Question 1209286: All numbers (N) that are written in three decimal places, divisible by 11, and when divided by 11, the quotient equals the sum of the squares of its three digits. \n" ); document.write( "
Algebra.Com's Answer #848107 by math_tutor2020(3817)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "I think the phrasing \"three decimal places\" should be \"three digits\". \n" ); document.write( "Also I'll assume we focus on whole numbers only. \n" ); document.write( "If those assumptions are the case then we're looking through the set {100, 101, 102, ..., 998, 999}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "100/11 = 9.09 approximately \n" ); document.write( "999/11 = 90.82 approximately\r \n" ); document.write( "\n" ); document.write( "11*9 = 99 is too small, but 11*10 = 110 fits. \n" ); document.write( "11*91 = 1001 is too large, but 11*90 = 990 fits.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The smallest and largest multiple of 11 in this set would be 110 and 990.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "We have reduced the set to {110, 121, 132, ..., 979, 990} \n" ); document.write( "Which you can think of as {11*10, 11*11, 11*12, ..., 11*89, 11*90} where we multiply 11 by items inside {10, 11, 12, ..., 89, 90} \n" ); document.write( "Each blue item is a quotient when dividing over 11. \n" ); document.write( "Two examples would be 110/11 = 10 and 979/11 = 89\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Then you can use trial-and-error to square the digits and add up the results \n" ); document.write( "110 ---> 1^2+1^2+0^2 = 2 which doesn't match with the quotient 110/11 = 10 \n" ); document.write( "121 ---> 1^2+2^2+1^2 = 6 which doesn't match with the quotient 121/11 = 11 \n" ); document.write( "132 ---> 1^2+3^2+2^2 = 14 which doesn't match with the quotient 132/11 = 12 \n" ); document.write( "143 ---> 1^2+4^2+3^2 = 26 which doesn't match with the quotient 143/11 = 13 \n" ); document.write( "And so on.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "This might take a while. \n" ); document.write( "To speed things up I made a Python script to search through all the values. \n" ); document.write( "The program found the following solutions: 550, 803\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "550 ---> 5^2+5^2+0^2 = 50 which matches with the quotient 550/11 = 50 \n" ); document.write( "803 ---> 8^2+0^2+3^2 = 73 which matches with the quotient 803/11 = 73 \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "There might be a much more efficient approach. \n" ); document.write( " \n" ); document.write( " |