document.write( "Question 1208759: Find the smallest integer which will divide over 45, 72, and 999 leaving remainder as 5, 2, and 9. \n" ); document.write( "
Algebra.Com's Answer #847192 by math_tutor2020(3817)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "The goal is to solve this system of congruences \n" ); document.write( "x = 5 (mod 45) \n" ); document.write( "x = 2 (mod 72) \n" ); document.write( "x = 9 (mod 999)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Recall that if a = b (mod n) then a-b = nk for some integer k. \n" ); document.write( "Rearranging things gives a = nk + b. \n" ); document.write( "Use this idea to transform the first two equations into x = 45k+5 and x = 72m+2. We cannot re-use k.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Both equations involve x, so equate the right hand sides and we get, \n" ); document.write( "72m+2 = 45k+5 \n" ); document.write( "72m-45k = 5-2 \n" ); document.write( "9(8m-5k) = 3 \n" ); document.write( "9(integer-integer) = 3 \n" ); document.write( "9*(integer) = 3 \n" ); document.write( "integer = 3/9 \n" ); document.write( "integer = 1/3 \n" ); document.write( "which is a contradiction. The value 1/3 = 0.33333... is not in the set of integers.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Therefore the first two equations of the original system do not have a solution. \n" ); document.write( "Overall the entire system doesn't have a solution either.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "--------------------\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "I used a Python script to check integers from x = 1 to x = 10,000,000 and couldn't find any solutions. \r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "This numeric approach of course doesn't prove there aren't any solutions, since there are infinitely many integers to check, but it's useful to get partial backup confirmation.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "A spreadsheet is another alternative verification route. \n" ); document.write( "You may be asking yourself \"Can we use Chinese Remainder Theorem?\" \n" ); document.write( "The answer would be \"No because the mod values 45, 72, and 999 are not pairwise coprime.\"\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "------------------------------------------------------------ \n" ); document.write( "------------------------------------------------------------\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Answer: No solutions \n" ); document.write( " \n" ); document.write( " |