Polynomial Curve Fit

R

rcc

I'm trying to do a polynomial curve fit (order 2) for the data below, but the
equation that the curve fit provides is way off. Any ideas why this isn't
working? It works for a similar set of data...

x y
10600 250
10600 250
10250 300
9750 350
9250 400
8625 450
8000 500
6750 550
 
R

Ron Rosenfeld

I'm trying to do a polynomial curve fit (order 2) for the data below, but the
equation that the curve fit provides is way off. Any ideas why this isn't
working? It works for a similar set of data...

x y
10600 250
10600 250
10250 300
9750 350
9250 400
8625 450
8000 500
6750 550

You don't give us any clue as to how your are doing the fit?

Are you using a formula? If so, please post the formula.

Are you graphing it and using the tool within the graph? If so, you probably
need to format the formula to show more decimal places.
--ron
 
M

Mike Middleton

rcc -

(1) Use an XY (Scatter) chart type, not a Line chart type (which treats the
X values as 1,2,3,... for the curve fit).

(2) Be sure all values are numeric, not text.

(3) I get the following results using Trendline or worksheet function
LINEST:

Y = -0.000013147702647*x^2 +
0.1503983217785*x +
134.511365283

- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel
 
J

Jerry W. Lewis

Since your data does not have numeric issues in LINEST from any version of
Excel, I presume that you are using the Chart trendline option. Make sure
that your chart is an "XY (Scatter)" chart, since a trendline on a "Line"
chart would give you nonsense.

If you are using an "XY (Scatter)" chart, the usual problem is to try to
calculate with the excessively rounded values of the default display. Right
click on the displayed equation and format to display in scientific notation
with 14 decimal places.

Jerry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top