document.write( "Question 1008068: The perimeter of a triangle is 30 inches. the first side of the triangle is 1 inch longer than the second side. the second side is 7 inches longer than the third side. what is the length of each side of the triangle? \n" ); document.write( "
Algebra.Com's Answer #623910 by fractalier(6550)![]() ![]() You can put this solution on YOUR website! Call the sides a, b and c. Then we have \n" ); document.write( "a + b + c = 30 \n" ); document.write( "a = b + 1 \n" ); document.write( "b = c + 7 or c = b - 7 \n" ); document.write( "Now substitute into the first equation and get \n" ); document.write( "b+1 + b + b-7 = 30 \n" ); document.write( "3b - 6 = 30 \n" ); document.write( "3b = 36 \n" ); document.write( "b = 12 so that \n" ); document.write( "a = 13 \n" ); document.write( "c = 5 \n" ); document.write( " |