Quadratic equation problem

29 Views Asked by At

Quadratic eq which takes the value (y) = 41 at x= -2 , the value (y) = 20 at x =5

when x = 2 -> a4-b2+c=y ...

how to find a,b,c,y

here is original question: Question's pic

1

There are 1 best solutions below

1
On

Your aren't supposed to find y. y is variable.

The quadratic equation is in the form $y = ax^2 + b^x + c$. When x = -2 you have y = 41 so $41 = a*(-2)^2 +b*(-2) + c$. When x = 5, y= 20 so $20 = a*5^2 + b*5 + c$. When x = 2, y = $a4-b2+c$ so $a4-b2+c = a*2^2 + b*2 + c$.

You have three equations and three unknowns, a, b, c. So you should be able to solve a, b, c and express $y = a*x^2 + b*x +c$ with the proper values of a, b, c.