Calculate the deformed exponential of order q.
exp_q(x, q)
A vector of the same length as x
containing the transformed values.
The deformed exponential is the reciprocal of the deformed logarithm Tsallis1994divent, see ln_q. It is defined as \((x(1-q)+1)^{\frac{1}{(1-q)}}\). For \(q>1\), \(\ln_q{(+\infty)}=\frac{1}{(q-1)}\) so \(\exp_q{(x)}\) is not defined for \(x>\frac{1}{(q-1)}\).
curve(exp_q(x, q = 0), from = -5, to = 0, lty = 2)
curve(exp(x), from = -5, to = 0, lty= 1, add = TRUE)
curve(exp_q(x, q = 2), from = -5, to = 0, lty = 3, add = TRUE)
legend("bottomright",
legend = c(
expression(exp[0](x)),
expression(exp(x)),
expression(exp[2](x))
),
lty = c(2, 1, 3),
inset = 0.02
)