I have an answer to the following question, but I have no easy way to verify it and would like some feedback, I'll go through my whole process.
Imagine a perfectly smooth hill moddled as a $y = -e^x$ curve. We want to study the movement of an object placed at $x = 0$ assuming no air resistance.
Notice that since the curve is exponential, the object will eventually lose contact will the hill and enter parabolic motion, we have to find the x-coordinate of that point.
Firstly I wanted an equation that describes the speed of the object as a function of x. Which is a good time to mention that for all my calculations the value of g will be positive 9.81 and I will add negatives signs when appropriate. $$-mg\Delta h = \frac 12 mv^2$$ $$-2g\Delta h = v^2$$ We know that $\Delta h$ is final y - initial y which will be $$\Delta h = -e^x - (-e^0)$$ $$\Delta h = 1 -e^x$$
So returning to our expression from before $$v^2 = -2g(1 - e^x)$$ $$v^2 = 2g(e^x - 1)$$ or $$v = \sqrt{2g(e^x - 1)}$$
Now comes the hard part of the question. Anything I say from here on might be wrong as it is all my reasoning and I haven't wanted to check it yet (wouldn't be fun).
In order for an object lose contact and go into parabolic motion, the floor under it must 'disappear' by having a decrease in gradient which is greater than that of a parabola. So I conjecture that the ball will lose contact when $\frac {d^2 y}{dx^2}$ of the equation that describes the surface it is rolling on is less than (greater value but negative) that of the parabola $y=ax^2$ that would result from the parabolic motion of the object, where 'a' will be negative and depend on its horizontal velocity and nothing else.
Now we need a way to find 'a' so we can compare it to our equation $y = -e^x$ Through some simple but tedious mechanics I arrived at this expression: $$a = \frac {-g}{2v^2}$$ where v is the horizontal velocity. Notice that since there is only downwards acceleration in parabolic motion, the vertical speed is completely irrelevant as having a different vertical speed will simply describe a different point on the same parabola.
Finally, we have to find the horizontal speed of the object as a function of x. We already have an expression for the magnitude of the velocity $$v = \sqrt{2g(e^x - 1)}$$ so in order to find the horizontal component all we need is some simple trigonometry. The gradient of the velocity vector with respect to the coordinate axis will be the same as that of the curve while it is still in contact, and the gradient of the curve is $\frac {dy}{dx} = -e^x$ as it is exponential. The gradient is the vertical component divided by the horizontal, in other words it is $tan(\alpha)$ where $\alpha$ is the acute angle with the x-axis.
If we let i be the horizontal component of velocity and j be the vertical component, then while the object is still in contact with hill.
$$e^x = \frac {|j|}{i}$$ $$|j| = e^x i$$
By Pythagoras
$$i^2 + j^2 = v^2$$ $$i^2 + e^{2x} i^2 = v^2$$ $$i^2 = \frac {v^2}{e^{2x} + 1}$$
Which we then substitute our original expression for v into to get $$i^2 = \frac {2g(e^x-1)}{e^{2x}+1}$$
Using our equation for a: $$a = \frac {-g}{2i^2}$$ $$a = \frac {-g}{2\frac {2g(e^x-1)}{e^{2x}+1}}$$ $$a=\frac {-(e^{2x}+1)}{4(e^x-1})$$
Finally for the last step we combine all our equations and compare the second derivatives. We want to find the point at which the second derivate of the curve of the hill will be equal to the second derivative of the parabola that would be formed if the object were to enter parabolic motion with its current horizontal speed. $$\frac {d^2}{dx^2}(-e^x) = \frac {d^2}{dx^2}(ax^2)$$ $$\frac {d^2}{dx^2}(-e^x) = \frac {d^2}{dx^2}(\frac {-(e^{2x}+1)}{4(e^x-1})x^2)$$ $$-e^x = \frac {-(e^{2x}+1)}{2(e^x-1)}$$ $$2e^{2x} - 2e^x = e^{2x} +1$$ $$e^{2x} - 2e^x - 1 = 0$$ Now we solve the quadratic and we get $$e^x = 1\pm \sqrt 2$$ And since we are only interested in the positive answer $$x = \ln{(1 + \sqrt2)}$$
This answer looks very nice and seems pretty, but my problem is that I simply have no way to verify it. I don't know how I feel about the fact that g cancels out at the end, which means that the force of gravity was irrelevant from the start (assuming it's non-0 and downwards)
If anyone spots any mistakes in my logic or can provide a simulation to visualise it I would be very grateful.