Assume we have a sigmoid function: $$y=\frac{a}{1+\exp(-b(x-c))} \qquad (a,b,c>0)$$ Assume we are interested in the "positive first part": $0\leq{x}\leq{c}$, where the curve "looks" exponential.
From the equation of $y$, is there any method for calculating an exponential approximation of $y$?
I mean, could we derive some $\alpha$ and some $\beta$ from parameters $a,b,c$ so that $y \approxeq \alpha \exp(\beta x)$ when $0\leq{x}\leq{c}$?
Didn't find anything about the subject. I'm interested in this question for the following reason: suppose we know that the evolution of a certain phenomenon is described by a sigmoid curve (parameters are known); during the first part of growth $(0\leq{x}\leq{c})$, we want to estimate the doubling time $\delta$ (assume $x$ is $time$) of the phenomenon: $(y(x+\delta)=2y(x))$; of course, from the equation of the sigmoid curve itself, the doubling time is not constant; but, if we could give an exponential approximation (assuming it's a "good" approximation) such as $\alpha \exp(\beta x)$, then we could estimate the doubling time by $\delta=\ln(2) / \beta$...
I hope the question is clear enough... Any ideas appreciated.


Your sigmoid behaves like an exponential when $y$ is small, which means that $e^{-b(x-c)}$ is big (namely $x\ll c$). If this is the case ($x\ll c$), then you can kill the $1$ in the denominator (because the $\exp$ term is much bigger than unity) and you are left with $$ y \approx a e^{ b(x-c)} $$ that is an increasing exponential (as expected).
EDIT: in the range $0<x<c$ you can find the tangent exponential function to a point of your curve (like the tangent line), but this does not guarantees that you are actually doing a good approximation away from the selected point: in general you cannot achieve what you are asking (I mean, for a general value of $c$ and $b$). You can try with $$ y = \frac{a}{2} e^{b(x-c)/2} $$ that is the exponential tangent to your curve in $x=c$ and see if this curves looks good for your particular application. Other "tangent exponential" for points between $0$ and $c$ are difficult to find analytically (but easy to find numerically).