Jest nieco skomplikowane, jeśli bezpośrednie rozwiązanie przez akceptację-odrzucenie. Po pierwsze, proste różnicowanie pokazuje, że pdf rozkładu jest
f(x)=(a+bxp)exp{−ax−bp+1xp+1}
f(x)=ae−axe−bxp+1/(p+1)≤1+bxpe−bxp+1/(p+1)e−ax≤1
f(x)≤g(x)=ae−ax+bxpe−bxp+1/(p+1)
gξ=xp+1x=ξ1/(p+1)dxdξ=1p+1ξ1p+1−1=1p+1ξ−pp+1
Xκbxpe−bxp+1/(p+1)κ is the normalising constant, then Ξ=X1/(p+1) has the density
κbξpp+1e−bξ/(p+1)1p+1ξ−pp+1=κbp+1e−bξ/(p+1)
which means that (i) Ξ is distributed as an Exponential E(b/(p+1)) variate and (ii) the constant κ is equal to one. Therefore, g(x) ends up being equal to the equally weighted mixture of an Exponential E(a) distribution and the 1/(p+1)-th power of an Exponential E(b/(p+1)) distribution, modulo a missing multiplicative constant of 2 to account for the weights:
f(x)≤g( x ) = 2 ( 12)e- a x+ 12)b xpmi- b xp + 1/ (p+1))
I sol można łatwo symulować jako mieszaninę.
Renderowanie R algorytmu akceptacji-odrzucenia jest zatem
simuF <- function(a,b,p){
reepeat=TRUE
while (reepeat){
if (runif(1)<.5) x=rexp(1,a) else
x=rexp(1,b/(p+1))^(1/(p+1))
reepeat=(runif(1)>(a+b*x^p)*exp(-a*x-b*x^(p+1)/(p+1))/
(a*exp(-a*x)+b*x^p*exp(-b*x^(p+1)/(p+1))))}
return(x)}
i dla próbki n:
simuF <- function(n,a,b,p){
sampl=NULL
while (length(sampl)<n){
x=u=sample(0:1,n,rep=TRUE)
x[u==0]=rexp(sum(u==0),b/(p+1))^(1/(p+1))
x[u==1]=rexp(sum(u==1),a)
sampl=c(sampl,x[runif(n)<(a+b*x^p)*exp(-a*x-b*x^(p+1)/(p+1))/
(a*exp(-a*x)+b*x^p*exp(-b*x^(p+1)/(p+1)))])
}
return(sampl[1:n])}
Oto ilustracja dla a = 1, b = 2, p = 3: