I have some data that I am trying to fit a curve to but curve fitting isn't something my discipline does a whole lot of (outside of a few standard curves). The functional form that is used in the picture was adopted from some literature and I have provided it below:
$$ Y = aXe^{-bX} $$
Ideally, I would like to try and fit a curve to the data that has a much easier inverse function to get at then the original functional form that I have provided above. I'm wondering if the community might have any ideas as to what type of functional form might be good to look into for fitting a curve for the data below?
Data:
X = numpy.array([0.0,56.39,132.68,200.87,260.01,310.59,353.62,390.24,421.52,
439.35,454.29,467.38,478.90,489.10,498.19,506.32])
Y = numpy.array([0.0,514.00,817.00,910.00,908.00,870.00,821.00,773.00,729.00,
681.00,640.00,606.00,577.00,552.00,531.00,512.00])

Here's a fourth-order polynomial fit:
$$y = 5.94923 + 11.2234 x - 0.0487853 x^2 + 0.0000902936 x^3 - 6.69893 \cdot 10^{-8} x^4$$