document.write( "Question 322604: an 18 ft pipe is to be cut into 3 pieces such that the second piece is 1 foot longer than the first, and the third piece is 1 foot longer than the second. what is the longest piece? \n" ); document.write( "
Algebra.Com's Answer #230956 by jessica43(140)![]() ![]() ![]() You can put this solution on YOUR website! The trick here is to change this word problem into 3 separate equations. \n" ); document.write( "First you know that 3 pieces of pipe will add up to 18 ft. This can be written as an equation: \n" ); document.write( "A + B + C = 18 \n" ); document.write( "Next, you know that piece B is 1 ft longer than piece A: \n" ); document.write( "B = A + 1 (or can also be written as A = B - 1) \n" ); document.write( "Finally, you know that piece C is 1 ft longer than piece B: \n" ); document.write( "C = B + 1 (or B = C - 1)\r \n" ); document.write( "\n" ); document.write( "Now we want to combine all three equations. We need to plug the second and third equations into the first and make sure there is only one variable to solve for. Since B is in all three equations, let that be our variable. So we plug A = B - 1 and C = B + 1 into equation one: \n" ); document.write( "A + B + C = 18 \n" ); document.write( "(B-1) + B + (B+1) = 18 \n" ); document.write( "3B - 1 + 1 = 18 \n" ); document.write( "3B = 18 \n" ); document.write( "B = 6 \n" ); document.write( "Now you can plug B into equations 2 and 3 to solve for A and C: \n" ); document.write( "A = B - 1 \n" ); document.write( "A = 6 - 1 \n" ); document.write( "A = 5 \n" ); document.write( "C = B + 1 \n" ); document.write( "C = 6 + 1 \n" ); document.write( "C = 7 \n" ); document.write( "So piece C (the third piece) is your longest piece at 7 ft. \n" ); document.write( " |