document.write( "Question 362234: How many triangles can you make if their perimeter can only be 24 units? The demensions are only in whole numbers. The triangles can be scalene, equilateral, or isocoles. \n" ); document.write( "
Algebra.Com's Answer #258144 by robertb(5830)![]() ![]() You can put this solution on YOUR website! let x,y,z be the measures of the sides of the triangle. Then x+y+z = 24. By the symmetries of the triangle inequality, \n" ); document.write( "x+y>z, \n" ); document.write( "x+z> y, \n" ); document.write( "y+z>x. \n" ); document.write( "Using the the perimeter equation above and the 3 inequalities we arrive at \n" ); document.write( "12>x, 12>y, 12>z. \n" ); document.write( "By brute-force method, the following are the possible combinations: \n" ); document.write( "(8,8,8) (7,6,11) \n" ); document.write( "(7,8,9) (9,6,9) \n" ); document.write( "(6,10,8) (9,5,10) \n" ); document.write( "(5,11,8) (9,4,11) \n" ); document.write( "(7,10,7) (4,10,10) \n" ); document.write( "(3,10,11) (2,11,11) \n" ); document.write( "therefore there are 12 possible traingles with perimeter 24 and integer sides. \n" ); document.write( " |