SOLUTION: I'm stumped.
Given an array of known X and Y values, and a list of *new* X values, how can I solve for what the new Y value will be ?
A bit more detail: In Excel, I plotted t
Algebra.Com
Question 313163: I'm stumped.
Given an array of known X and Y values, and a list of *new* X values, how can I solve for what the new Y value will be ?
A bit more detail: In Excel, I plotted these known X and Y values by means of a XY Scatter Chart, then asked it to create me a Trend Line, showing me the formula. The formula, for this data, is: y = 14.132x² - 63.03x + 79.647. I need to know how to actually *arrive* at that formula by a more manual means.
Thanks! :)
Answer by Fombitz(32388) (Show Source): You can put this solution on YOUR website!
Check out the link below for the particulars.
You can do this all within an EXCEL spreadsheet.
You're trying to fit to the given sets of data (,).
.
.
.
You need to create a matrix of values.
[X]=
where
.
.
.
Then create another matrix of values,
[Y]=
where
Then you have the coefficients a0,a1, and a2.
[a]=
.
.
.
The matrix equation you need to solve is,
[X][a]=[Y]
[a]=[X]inv[Y]
So find the inverse of [X] and matrix multiply by [Y].
That will provide you the coefficients of the least square fit quadratic, [a].
.
.
.
http://mathworld.wolfram.com/LeastSquaresFittingPolynomial.html
RELATED QUESTIONS
how can i find the x and y values of a... (answered by solver91311)
I am a new student at a new school. we are learning about excluded values and simplifing... (answered by edjones)
Solve the following problem
A.the median for 10,9,y,12 and 6 is y.find posible values of (answered by ankor@dixie-net.com,greenestamps)
I am trying to geta count of how many possible values I can create using all the leters... (answered by Edwin McCravy)
I'm given a table of x and y values and I need to identify the type of function. Can you... (answered by jim_thompson5910)
Regression equation for the profit of a new e-reader:
Profit = $0.15 x number of... (answered by KMST)
Find an equation of the line having the given slope and containing the given point.... (answered by jim_thompson5910)
FIND THE VALUE OF Y FOR THE GIVEN VALUES OF X, AND Z.
y= x + z
x = 8
z =... (answered by mathbird)
I am definitely confused and can't understand, if you can please explain in detailed... (answered by Fombitz)