Peter K. answered 11/19/19
Math / Statistics / Data Analytics
- a + b + c = 354
- 9a + 3b + c = 266
- 16a + 4b + c = 174
We can perform Gaussian elimination on the left side's (3x3) coefficient matrix augmented with a vertical vector (3 x 1) representing the vector of the right sides of these equations..
Or we can set up a Matrix A, of the left side's (3x3) coefficients, multiply by it by x = (a, b, c)T s.t. Ax = (354, 266, 174)T then we left multiply both sides of this equation by A-1 , the inverse of A, and we get
x = A-1(354, 266, 174)T so x = (a, b, c)T = (-16, 20, 350)T
So our equation is:
y = -16x^2 + 20x + 350
Finally, check for reasonableness.