Skip to main content

Interpolation function way off



I have a simple list of data points to which I would like to fit an interpolation function. However, the results given by Interpolation[] gives an oscillating function which is not warranted by the data. The data is as follows:


list = {{3.272492347489368`*^-13, 
3.393446032644599`*^24}, {7.635815477475192`*^-13,
1.1419553951933573`*^25}, {1.1999138607461015`*^-12,
6.25421894208354`*^24}, {1.636246173744684`*^-12,
6.099735099368696`*^25}, {2.0725784867432662`*^-12,
1.7770407891508593`*^28}, {2.5089107997418487`*^-12,
5.666293158766728`*^30}, {2.945243112740431`*^-12,
1.4673042757432113`*^33}, {3.3815754257390136`*^-12,
2.7847878750945815`*^35}, {3.817907738737596`*^-12,

3.70906787022051`*^37}, {4.2542400517361785`*^-12,
3.411500191373945`*^39}, {4.690572364734761`*^-12,
2.1558621505149318`*^41}, {5.126904677733343`*^-12,
9.344524755261095`*^42}, {5.563236990731926`*^-12,
2.771851542592801`*^44}, {5.999569303730508`*^-12,
5.5961200001183325`*^45}, {6.435901616729091`*^-12,
7.60451894430725`*^46}, {6.872233929727673`*^-12,
6.8161973406557206`*^47}};
f = Interpolation[list];


Clearly the function should be positive and monotonic (except a small dip in the beginning) but when I try to interpolate it gives me a function that oscillates around zero.


enter image description here


I suspect it's because the numbers are very large and I am able to circumvent the issue by taking the log of the data and fitting to that instead so it's not a big deal. However, since Mathematica doesn't display any error messages how can I be sure that Intepolation[] gives reasonable results in general? What's going on here?


P.S. The figure is produced by (leaving out the legends)


style[scheme_, num_] := 
Table[Directive[Thick, ColorData[scheme][(i - 1)/(num - 1)]], {i, 1,
num}];
fs = Interpolation[list, Method -> "Spline"];
fh = Interpolation[list, Method -> "Hermite"];
fncplot =

LogPlot[{fs[x], -fs[x], fh[x], -fh[x]}, {x, First@First@list,
First@Last@list}, Frame -> True,
PlotStyle -> style["DarkRainbow", 4]];
dataplot =
ListLogPlot[list, Frame -> True,
PlotMarkers -> {Automatic, Small}];
Show[fncplot, dataplot]

Answer



This is a good example of why one should never blindly trust the numerical results of systems like Mathematica, without thinking about numerical methods that these systems use. Mathematica won't ever make numerical analysis courses obsolete.


Most interpolation methods use piecewise polynomials, and assume slowly varying smooth functions. Your data has extreme exponential variation. It won't be possible to reproduce this extreme variation with any accuracy by stitching together low order polynomials.



The correct approach, as you mention, is to interpolate the logarithm of the data (f = Interpolation[{#1, Log[#2]} & @@@ list]).


To see how things go wrong otherwise, let's look at a simple example. Let is try to approximate an exponential with a 2nd order polynomial.


a = 1;

pts = {{0, 1}, {1, Exp[-a 1]}, {2, Exp[-a 2]}};

f = Interpolation[pts, InterpolationOrder -> 2];

Plot[{Exp[-a x], f[x]}, {x, 0, 2},
Epilog -> {Red, PointSize[Large], Point[pts]}]


Mathematica graphics


So far it looks good. Let is now force variations over orders of magnitude (just like your data) by increasing a to 5.


Mathematica graphics


The polynomial "overshoots" and takes negative values between the 2nd and 3rd interpolation points. Actually when plotting things on a linear vertical scale, this seems to make sense. The 2nd and 3rd points are both effectively zero, at least if we care only about the differences in their values.


However, you are plotting your data on a log-scale (you care about the ratios of values, not differences). The interpolation function constructed on a linear scale is not at all "way off" if we look at it on a linear scale. It gives values very close to zero, which is fine. It looks "way off" only on a log-scale. The solution (as you mentioned) is to interpolate on a log-scale.


I don't think Mathematica should give warnings in these cases. It is after all just applying the interpolation method as specified. It is up to the user to think about whether this type of interpolation makes sense for the given scenario.


Comments

Popular posts from this blog

front end - keyboard shortcut to invoke Insert new matrix

I frequently need to type in some matrices, and the menu command Insert > Table/Matrix > New... allows matrices with lines drawn between columns and rows, which is very helpful. I would like to make a keyboard shortcut for it, but cannot find the relevant frontend token command (4209405) for it. Since the FullForm[] and InputForm[] of matrices with lines drawn between rows and columns is the same as those without lines, it's hard to do this via 3rd party system-wide text expanders (e.g. autohotkey or atext on mac). How does one assign a keyboard shortcut for the menu item Insert > Table/Matrix > New... , preferably using only mathematica? Thanks! Answer In the MenuSetup.tr (for linux located in the $InstallationDirectory/SystemFiles/FrontEnd/TextResources/X/ directory), I changed the line MenuItem["&New...", "CreateGridBoxDialog"] to read MenuItem["&New...", "CreateGridBoxDialog", MenuKey["m", Modifiers-...

How to thread a list

I have data in format data = {{a1, a2}, {b1, b2}, {c1, c2}, {d1, d2}} Tableform: I want to thread it to : tdata = {{{a1, b1}, {a2, b2}}, {{a1, c1}, {a2, c2}}, {{a1, d1}, {a2, d2}}} Tableform: And I would like to do better then pseudofunction[n_] := Transpose[{data2[[1]], data2[[n]]}]; SetAttributes[pseudofunction, Listable]; Range[2, 4] // pseudofunction Here is my benchmark data, where data3 is normal sample of real data. data3 = Drop[ExcelWorkBook[[Column1 ;; Column4]], None, 1]; data2 = {a #, b #, c #, d #} & /@ Range[1, 10^5]; data = RandomReal[{0, 1}, {10^6, 4}]; Here is my benchmark code kptnw[list_] := Transpose[{Table[First@#, {Length@# - 1}], Rest@#}, {3, 1, 2}] &@list kptnw2[list_] := Transpose[{ConstantArray[First@#, Length@# - 1], Rest@#}, {3, 1, 2}] &@list OleksandrR[list_] := Flatten[Outer[List, List@First[list], Rest[list], 1], {{2}, {1, 4}}] paradox2[list_] := Partition[Riffle[list[[1]], #], 2] & /@ Drop[list, 1] RM[list_] := FoldList[Transpose[{First@li...

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...