I am looking for the simplest sigmoid function that goes from 0 to 1 and has a fixed starting point and tunable slope. As I am not a mathematician, I am sure I already used a lot of improper terms, but I hope it will be clear:
- $$y=\frac{1}{1+e^{-x\alpha}}$$
The standard sigmoid (1.) is not such, as it's starting position depends on the slope (α).
I found that (2.) has the desired start:
- $$y=1-\frac{1}{\left( 1+\left( x \right)^{4} \right)}$$
Now that is great, but I need a sigmoid, when below 0 (or actually below β in 3.) it is always zero and it is possibly differentiable.
- $$y=1-\frac{1}{\left( 1+\left( x-β \right)^{4} \right)}$$
My most sincere apologies if this question breaks the noob-o-meter. Please also correct me, if I used the wrong terms/ language.


.jpgneeds to be replaced to.pngto be working! Thanks for the fix! – bud.dugong Aug 22 '17 at 18:13I got to a certain point:
$${y=\left( 1-\frac{1}{\left( 1+α \cdot (x-β)^{4} \right)} \right)\cdot \left( .5+\frac{x}{2\cdot \mbox{abs}\left( x \right)} \right)}$$
where α tunes the slope and β tunes the inflexion point, but
– bud.dugong Aug 22 '17 at 22:07abs()is not differentiable, and I hope there is a simpler formula than above.$$y= {0.5*(sgn(X) +1) \cdot α \cdot X^4 \over α \cdot X^4 +1}$$
where $$X=x-β$$
– bud.dugong Aug 27 '17 at 09:38sgn(x)is differentiable at all values exceptx=0.