I have 3 points ($x_0$, $y_0$), ($x_1$, $y_1$) and ($x_2$, $y_2$) that lie on a monotonically-increasing (asymptotic) curve (whose function is not known a priori).
The only unknown value is $x_2$, which corresponds to reaching an asymptote (in the limit sense) of $y_2$.
My question is: Is there a straightforward numeric way to determine $x_2$? My eventual goal is to proceed iteratively until convergence is reached.
I am familiar with numerical root-finding algorithms, of which Muller's method crossed my mind, since it relies on three known points to construct a parabola that interpolates the points. Apart from this, my problem is different in that I wish to know the value of $x_2$ that gives $f(x_2) = y_2$.
Any thoughts on a sound approach?