OFFSET
0,1
COMMENTS
Fixed point of sigmoid (standard logistic function) as well as its inverse (logit).
LINKS
Eric Weisstein's World of Mathematics, Sigmoid Function.
Wikipedia, Logistic Function.
EXAMPLE
0.6590460684074066...
MAPLE
Digits:=100: fsolve(1/(1+exp(-x))-x, x);
MATHEMATICA
RealDigits[FindRoot[1/(1+Exp[-x])-x, {x, 0.6}, WorkingPrecision -> 100][[1, 2]], 10, 100][[1]]
PROG
(PARI) default(realprecision, 100); solve(x=0.4, 0.7, 1/(1+exp(-x))-x)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Michal Paulovic, Aug 13 2023
STATUS
approved