I'm looking for a function that approaches a y-value as x approaches infinity, something close to: $$y=\frac{x}{x+1}$$ however I have no idea how to customize such a function to suit my needs.
I know that multiplying the entire thing will move the asymptote on the $y$ axis, ie $d\times(\frac{x}{x+1})$ will give me a function that approaches $d$ at infinity, but I have no idea how to modify how it fast or slow it approaches that limit. I also know that in this example the $+1$ on the $x+1$ customizes where the half-way point is, but it doesn't seem to let me control it any further than that.
For example, a desired effect I want is for every half-step to take twice as long to reach the limit. Using $f(x)$ that approaches $d=100$ at infinity, I would want these outcomes:
$f(0) = 0$
$f(0.0001) \approx 0.0001$
$f(100) = 50$
$f(200) = 75$
$f(400) = 87.5$
$f(800) = 93.75$
The important conditions of this function is that: $f(0.0001) \approx 0.0001$ (starts off being $x\approx y$) and eventually becomes $f(\infty) \approx 100$
How would I go about creating this function, and most importantly how would I customize it to slow it down or speed it up so it gets closer to $d$ at different rates?
I feel like I'm so close to a solution but not quite there.
Thanks!
