What sort of equation produces this upside-down hockey stick shaped curve?

478 Views Asked by At

I have a dataset that I'm trying to model with an equation. The points when connected produce a curve much like an upside down hockey stick:

enter image description here

I've been experimenting with an inverse square root equation y = b - a/sqrt(x). Below model uses a=100 and b=10. However I can't get the curve to turn sharply enough.

enter image description here

Am I on the right track? How can improve the fit?

1

There are 1 best solutions below

0
On

Part of what was throwing me off was the upside-down-ness of the curve. This is also what was preventing Excel from coming up with a regression equation.

After realizing this, I made a new plot with the Y values subtracted from 10 which flipped it back over. Excel was then able to fit it to a power regression curve with equation y = a * x^b, where b was negative.