Random Variable with exponential distribution of Probablity Density Function
1 view (last 30 days)
Show older comments
Any thought/hint for solving this question
Assume that the random variable X has an Exponential distribution with PDF given by:
* f(x) = 1/α exp(-x/α); x => 0*
Using the theory of transformed random variables, determine an expression for the PDF of Y , where Y = X^2.
Plot the PDFs of X and Y in the same plot. The answer to the question should be the analytical derivation of the PDF of Y , as well as the plots of the PDFs of X and Y .
0 Comments
Answers (3)
ABHILASH SINGH
on 14 Aug 2018
Edited: ABHILASH SINGH
on 17 Aug 2018
alpha=2;
X=0:0.1:10;
fx=(1/alpha)*exp(-X./alpha);
plot(X,fx)
fy=fx./(2*X);
hold on
plot(X,fy)
legend('f(X)','f(Y)')
xlabel('X')
ylabel('F(X),F(Y)')
0 Comments
Roger Stafford
on 17 Sep 2014
If we call the pdf of y, 'pdfy', then
pdfy(t) = 1/(2*a*sqrt(t))*exp(-1/a*sqrt(t))
Note the interesting fact that as t approaches the lower limit of zero, the probability density approaches infinity, but that's all right because, of necessity, it is still integrable, and in fact has an integral of one as the upper limit for t approaches infinity. You can see that trend to infinity at t = 0 in Youssef's plot.
0 Comments
Youssef Khmou
on 16 Sep 2014
Edited: Youssef Khmou
on 16 Sep 2014
The beginning of the answer can be as the following :
% first part
alpha=2; % parameter
N=400; % size of a sample
r=random('exp',alpha,1,N);
figure; plot(r);
x=linspace(min(r),max(r),40);
figure;hist(r,x);
title(' Exponential distribution') ; % hold on..........
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!