I am trying to develop a function which goes through the follow points. The function will be calculated on a microprocessor which has 20 mHz.
List of given points:
P1 = (36541 ,120)
P2 = (37811 ,110)
P3 = (39527 ,100)
P4 = (41414 ,90)
P5 = (44475 ,80)
P6 = (48848 ,70)
P7 = (55468 ,60)
P8 = (67241 ,50)
P9 = (103755 ,40)
I allready tried to interpolate the function in geogebra and in Wolfram|Alpha but my result are to complicated to be calculated in a fraction of a second. Cubic or quadratic functions are to inaccurate.
A decent approximation for those points is
$$ \frac{0.0000436715 x^2+20.6277 x+516955}{x-25462.4}. $$
In the comments on hardmath's answer, SimpleMath also gives the points
(35891,120),(37141,110),(38197,100),(40259,90),(42541,80),(46356,70),(53179,60),(66204,50),(102805,40).An approximation of the same form for these points is
$$ \frac{-0.0000158011 x^2+32.4074 x-156608}{x-27708}, $$
which was found with the Mathematica command
(a x^2 + b x + c)/(x + d) /. FindFit[{{35891, 120}, {37141, 110}, {38197, 100}, {40259, 90}, {42541, 80}, {46356, 70}, {53179, 60}, {66204, 50}, {102805, 40}}, (a x^2 + b x + c)/(x + d), {a, b, c, d}, x]