document.write( "Question 183765: The Johnson Farm has 500 acres of land allotted for cultivating corn and wheat.
\n" );
document.write( "The cost of cultivating corn and wheat is $42 and $30 pre acre respectively.
\n" );
document.write( "Mr.Johnson has $18,600 available for cultivating these corp.
\n" );
document.write( "If he used all the land and entire budget,how many acres of each crop should he plant? \n" );
document.write( "
Algebra.Com's Answer #137902 by math_il(6)![]() ![]() ![]() You can put this solution on YOUR website! let c = no of acres of corn and w = no of acres of wheat \n" ); document.write( "using the total acres, we get \n" ); document.write( "c +w =500 or w = 500-c (A) \n" ); document.write( "using the cost of cultivation, we get \n" ); document.write( "42c +30w = 18600 \n" ); document.write( "substitute the value of w from equation A \n" ); document.write( "42c + 30(500-c) = 18600 \n" ); document.write( "42c +15000 -30c =18600 \n" ); document.write( "12c = 18600-15000 = 3600 \n" ); document.write( "c = 3600/12 = 300 acres \n" ); document.write( "and use this in A , w = 500 -c = 500 -300 = 200 acres \n" ); document.write( "so answer is 300 acres of corn and 200 acres of wheat \n" ); document.write( " |