Polynomial Trendline

tiltz

New Member
Joined
Apr 3, 2012
Messages
22
I am using a polynomial trendline to project sales based on volume. When I switch the axis on the graph (for projecting volume based on sales) I get this trendline equation: y = 1E-09x2 + 0.0041x + 636.28. What is -09x^2?

The inverse function works perfectly (y = -0.0027x2 + 180.4x + 9415.8)

 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
1E-09 is your coefficient for Xsquared, but it's showing as a very small number. You just need to show more decimal places to view the longhand.

In 2010, right click on the formula box>Format Trendline Label>Number>whatever decimal places you like.
 
Upvote 0
Here is the formula I am using, but the equation is not matching the graph when I put in sample X values (AD44) : =(EXP(-9)*AD44^2)+(0.0041*AD44)+636.28.

For example X=1M should return ~y=6000.
 
Upvote 0
You're only using 1 digit of precision. If you want to see the coefficients accurately, select a 3-cell wide range and array-enter*,

=linest(y, x^{1,2})

replacing x and y with references to the ranges where those values appear, e.g,.

=linest(B1:B10, A1:A10^{1,2})


*meaning confirmed with Ctrl+Shift+Enter rather than just Enter
 
Upvote 0
The first value is the coefficient of x^2, the second is the coefficient of x, and the third is the constant.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,262
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top