Question

3.10 (i) If X1, , Xn are i.i.d. according to the exponential density e-, r >0, show that (2.9.3) P [X(n)-log n < y]- e-e-v, -00 < y < oo. (ii) Show that the right side of (2.9.3) is a cumulative distribution function. (The distribution with this edf is called the ertreme value distribution.) (iii) Graph the cdf of X(n)-log n for n = 1, 2, 5 together with the mit e-e (iv) Graph the densities corresponding to the cdfs ofi
0 0
Add a comment Improve this question Transcribed image text
Answer #1

(i) P(X(n) - logn < y)-P(X(n) < y +log n) P(max(Xi, X2, .., Xn) < y + log n) 7t P(y+logn) since Xs are independent 7t y+log n e - (1-e-V-lognyn 0 7t as n → oc (Use the result: (1 a/n)eas n ) (ii) Let Fn(y+ logn) = (1-e-y-logn) Then F,,(x) = (1-e-r) We easily check that Fn(x) is continuous function For 띠 < 2.2, -띠 >-r2 or, e-n > e-12 or (1-e-n) < (1-e-12) Hence Fn( is increasing function E, (oo) = 1 since e-oo-0 Fn(-oo) = 0 Since is follow exponential distribution and X(n) = max(X1, X2, , xa) so P(X(n) < 0)-0 Therefore Fn(x) is a cdf

-x-log nn an (ii) We denote cdf of X(n) - log n by Fx) (1) and

R code:

x=seq(0,5,by=0.01)
n=c(1,2,5)
F=matrix(0, nrow=3,ncol=length(x))
for(i in 1:3)
{
for(j in 1:length(x))
{
F[i,j]=(1-exp(-x[j]-log(n[i])))^n[i]
}
}
p=exp(-exp(-x))
plot(x,F[1,],xlab="y",ylab="CDF",lwd=1,col=1,ylim=c(0,1),type="l")
lines(x,F[2,],col=2,lwd=2)
lines(x,F[3,],col=3,lwd=2)
lines(x,p,col=4,lwd=2)
legend('topleft', c(expression(F[1]),expression(F[2]),expression(F[5]),expression(F)),
lty=1, col=1:4, bty='n', cex=.75)

5 4 3 2 0 8 8

(iv) pdf of X(n) log n is dFn nd.r logn, r > 0 0 otherwise

R code:

x=seq(0,5,by=0.01)
n=c(1,2,5)
f=matrix(0, nrow=3,ncol=length(x))
for(i in 1:3)
{
for(j in 1:length(x))
{
f[i,j]=(1-exp(-x[j]-log(n[i])))^(n[i]-1)*exp(-x[j]-log(n[i]))
}
}
p=exp(-exp(-x))
plot(x,f[1,],xlab="y",ylab="CDF",lwd=1,col=1,ylim=c(0,1),type="l")
lines(x,f[2,],col=2,lwd=2)
lines(x,f[3,],col=3,lwd=2)
legend('topright', c(expression(f[1]),expression(f[2]),expression(f[5])),
lty=1, col=1:3, bty='n', cex=.75)

5 4 3 2 0 8 8

Add a comment
Know the answer?
Add Answer to:
3.10 (i) If X1, , Xn are i.i.d. according to the exponential density e-", r >0,...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT