document.write( "Question 1179261: Given the equation: Ax2 + Bx + C. When y is equal to 41, x is equal to -2. When y is
\n" );
document.write( "equal to 20, x is equal to 5. When minimized, x is equal to 2. Find the sum of A and B. \n" );
document.write( "
Algebra.Com's Answer #808789 by htmentor(1343)![]() ![]() You can put this solution on YOUR website! y = Ax^2 + Bx + C \n" ); document.write( "41 = A(-2)^2 + B(-2) + C \n" ); document.write( "20 = A(5)^2 + B(5) + C \n" ); document.write( "When minimized, dy/dx = 0 = 2Ax + B -> 2(2)A + B = 0 -> B = -4A \n" ); document.write( "Substitute in the 1st two equations: \n" ); document.write( "41 = 4A + 8A + C -> 41 = 12A + C \n" ); document.write( "20 = 25A - 20A + C -> 20 = 5A + C \n" ); document.write( "Subtract the 2nd from the 1st: \n" ); document.write( "21 = 7A -> A = 3 \n" ); document.write( "Thus B = -12, and C = 41 - 12(3) -> C = 5 \n" ); document.write( " |