document.write( "Question 1149820: A farmer has 1,080 acres of land on which he grows corn, wheat, and soybeans. It costs $45 per acre to grow corn, $60 to grow wheat, and $50 to grow soybeans. Because of market demand the farmer will grow twice as many acres of wheat as of corn. He has allocated $57,300 for the cost of growing his crops. How many acres of each crop should he plant? \n" ); document.write( "
Algebra.Com's Answer #771162 by ankor@dixie-net.com(22740)![]() ![]() You can put this solution on YOUR website! A farmer has 1,080 acres of land on which he grows corn, wheat, and soybeans. \n" ); document.write( " It costs $45 per acre to grow corn, $60 to grow wheat, and $50 to grow soybeans. \n" ); document.write( " Because of market demand the farmer will grow twice as many acres of wheat as of corn. \n" ); document.write( " He has allocated $57,300 for the cost of growing his crops. \n" ); document.write( " How many acres of each crop should he plant? \n" ); document.write( ": \n" ); document.write( "let c = acres in corn \n" ); document.write( "let w = acres in wheat \n" ); document.write( "let s = acres in soy bean \n" ); document.write( ": \n" ); document.write( "write an equation for each statement \n" ); document.write( ": \n" ); document.write( "\"A farmer has 1,080 acres of land on which he grows corn, wheat, and soybeans.\" \n" ); document.write( "c + w + s = 1080 \n" ); document.write( "\" It costs $45 per acre to grow corn, $60 to grow wheat, and $50 to grow soybeans.\"..\"He has allocated $57,300 for the cost\" \n" ); document.write( "45c + 60w + 50s = 57300 \n" ); document.write( "\"Because of market demand the farmer will grow twice as many acres of wheat as of corn.\" \n" ); document.write( "w = 2c \n" ); document.write( ": \n" ); document.write( "replace w with 2c in the first two equations \n" ); document.write( "c + 2c + s = 1080 \n" ); document.write( "3c + s = 1080 \n" ); document.write( "and \n" ); document.write( "45c + 60(2c) + 50s = 57300 \n" ); document.write( "45c + 120c + 50s = 57300 \n" ); document.write( "165c + 50s = 57300 \n" ); document.write( "simplify, divide equation by 50 \n" ); document.write( "3.3c + s = 1146 \n" ); document.write( "use elimination on these two equation \n" ); document.write( "3.3c + s = 1146 \n" ); document.write( "3c + s = 1080 \n" ); document.write( "--------------------subtraction eliminates s, find c \n" ); document.write( ".3c + 0 = 66 \n" ); document.write( "c = 66/.3 \n" ); document.write( "c = 220 acres in corn \n" ); document.write( "then \n" ); document.write( "w = 2(220) \n" ); document.write( "w = 440 acres in wheat \n" ); document.write( "then \n" ); document.write( "1080 - 220 - 440 = 420 acres in soybeans \n" ); document.write( ": \n" ); document.write( ": \n" ); document.write( "Check this in the statement: \n" ); document.write( "\" It costs $45 per acre to grow corn, $60 to grow wheat, and $50 to grow soybeans.\"..\"He has allocated $57,300 for the cost\" \n" ); document.write( "45(220) + 60(440) + 50(420) = \n" ); document.write( "9900 + 26400 + 21000 = 57300 \n" ); document.write( " |