document.write( "Question 807631: the product of two consecutive odd integers is less than 5 times their sum
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #486435 by DrBeeee(684)![]() ![]() ![]() You can put this solution on YOUR website! The trick you need to learn about integer problems is \"How do we represent them.\" \n" ); document.write( "Let n = the first odd integer \n" ); document.write( "Then the NEXT consecutive ODD integer is (n + 2). Not n+1, because if n is odd then n+1 would be even! \n" ); document.write( "So \n" ); document.write( "Let n+2 = the next odd integer \n" ); document.write( "The problem statement is given by \n" ); document.write( "(1) n*(n+2) < 5*(n + n +2) or \n" ); document.write( "(2) n^2 + 2n < 10n + 10 or \n" ); document.write( "(3) n^2 + 2n - 10n < 10 or \n" ); document.write( "(4) n^2 - 8n < 10 or \n" ); document.write( "(5) n*(n-8) < 10 \n" ); document.write( "The form of (5) is really arbitrary and not super important. \n" ); document.write( "What we need to do is find the values of n (remember it is an odd integer) that satisfy the inequality in (5). I use trial and error. \n" ); document.write( "First I start a -13, then we get \n" ); document.write( "(6) -13*(-21) = 273 which is not less than 10 \n" ); document.write( "So let's move to a higher value like n = -3, where we get \n" ); document.write( "(7) -3*(-11) = 33, stiil not less than 10. \n" ); document.write( "Let's try n = -1, and get \n" ); document.write( "(8) -18(-9) = 9. Aha, the least integer is \n" ); document.write( "(9) n > -1 \n" ); document.write( "Now go to high positive odd integers, say n = 11 and get \n" ); document.write( "(10) 11*(3) = 33 which is not less than 10. So try n = 9 and get \n" ); document.write( "(11) 9*(1) = 9. Aha we hit another limit. \n" ); document.write( "To be sure there's a range of n's, let's try n = 7 and get \n" ); document.write( "(12) 7*(-1) = -7 which is less than 10, so is OK. Let's check the low value at n = 1 and get \n" ); document.write( "(13) 1*(-7) = -7, so we have \n" ); document.write( "(14) \n" ); document.write( "Answer: The consecutive odd integers are (-1,1), (1,3), (3,5), (5,7), (7,9), (9,11). \n" ); document.write( "Note: we can solve for the roots of the equation \n" ); document.write( "(15) n^2 - 8n - 10 = 0 and get \n" ); document.write( "(16) n = 9.1 and -1.1 \n" ); document.write( "Since we want intger values for n we choose \n" ); document.write( "(17) n = [-1,9], the same as my lenghty trial and error. \n" ); document.write( "PS I actually found the roots first.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |