Saturday, 19 March 2016

probability - Plot the cdf and simulate a random variable (rv) with this cdf using the inversion method.




Consider the continuous random variable with pdf given by:



f(x)=2(x1)2;1<x2
f(x)=0;otherwise



Plot the cdf for this random variable.
Show how to simulate a rv with this cdf using the inversion method.



I tried this as




F(x)=x12(t1)2dt=23(x1)3;1<x2



I plot the cdf using R.



 x<-seq(1,2,length=10)
plot(x,(2/3)*(x-1)^3)


to simulate a rv with this cdf using the inversion method




let



S=23(x1)3



3S2=(x1)3



X=1+(3S2)13



Using R




  X.sim <- function(S)1+(3*S/2)^(1/3)
S <- runif(100)

x = X.sim(S)


But i got the value of x more than 2 . But 1<x2 .



How can i solve the problem ?




I noticed if i integrate the pdf under the range 1<x2 it is not equal to 1.


Answer



The issue is that the normalizing constant has been incorrectly specified in the exercise. It says 2 when it should in fact be 3. See below.



21c(x1)2dx=c[(x1)33]21=c3=1c=3



If you change this and run the following code:




X.sim <- function(S)1+(S)^(1/3)
S <- runif(100000)
x <- X.sim(S)
max(x)


you will see that you get very close to 2, but you won't exceed it. Hope this helps!


No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find lim without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...