How do I extrapolate from these non linear values?
https://docs.google.com/spreadsheet/ccc?key=0AihZQktdW9mxdEdqNGJaOEtBOENVQXdfa1ZOWUhIamc
I'm looking for a formula that'll give me more values down the graph following the trend of these numbers.
|
How do I extrapolate from these non linear values? https://docs.google.com/spreadsheet/ccc?key=0AihZQktdW9mxdEdqNGJaOEtBOENVQXdfa1ZOWUhIamc I'm looking for a formula that'll give me more values down the graph following the trend of these numbers. |
|||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
There seems to be a very good fit to an exponential: $$L_j \approx \exp(11.9095801316190 + .157003890964286\; j), \ j = 1 \ldots 15 $$ |
|||
|
|
|
You can try various things. I would first divide them all by $10^6$ to avoid overflow, then try polynomial fits of increasing order and see how they do. You could also take logs and try a linear fit to see if they fit an exponential. What do you know about where they came from? Are they measured data that might have some noise? Are they results of an integer calculation, exact, and maybe factoring will teach you something? Again, if they are integers, they might fit a polynomial exactly and taking successive differences will find that out. |
|||||||||||
|
|
As a worst-case scenario option, you could use the Lagrange polynomial equation http://mathworld.wolfram.com/LagrangeInterpolatingPolynomial.html .It takes a while even with Wolfram, though, so only use it only if approximations fail you. |
|||
|
|