How to find a code for the following algorithm
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I want to find the distribution of random variable Z. Suppose X1, X2, ..., Xn are n mutually independent random variables and let Z be their sum:
Z=X1+X2+...+Xn
The distribution of Z can be derived recursively, using the results for sums of two random variables from the following function:
function [answer]=Sum_Of_2_Random_Variables(z)
F=@(y) normpdf(z-y).*normpdf(y);
answer= integral(F,-Inf,Inf);
end
So the algorithm would be as follow:
Algorithm A:
- first, define: Y1=X1+X2, and compute the distribution of Y1 ;
- then, define: Y2=Y1+X3, and compute the distribution of Y2 ;
- and so on, until the distribution of Z can be computed from: Z=Yn=Y(n-1)+Xn
Now I do not know how to write the code for algorithm A. Any help would be appreciated. Thank you.
The main problem I have is the following: Let's say I want to find distribution of Y1=X1+X2 using the following code:
F=@(y)Sum_Of_2_Random_Variables(z-y).*normpdf(y);
answer=integral(F,-Inf,Inf);
This wont work since the input to the function Sum_Of_2_Random_Variables is not of type double.
- I know that sum of normal random variables is normal random variable, the distribution of random variables Xi's can be any distribution, to simplify the question I chose standard normal distribution. (In my problem the distribution is not normal.)
Respuestas (1)
Matt J
el 21 de Sept. de 2013
Editada: Matt J
el 21 de Sept. de 2013
It seems like an unnecessarily painful and brute force way to go about this. Rather than using n-fold convolutions, it seems better to use characteristic functions. I.e., take the FFTs of all the pdfs (the characteristic functions of all the Xi), multiply them together, and then take the inverse Fourier transform of the result.
5 comentarios
Matt J
el 22 de Sept. de 2013
Editada: Matt J
el 22 de Sept. de 2013
There's no clear reason why you need to be doing this symbolically as opposed to numerically. You've already been attempting numerical integration anyway, using the integral() command.
Just sample your pdfs (or your characterisitic functions if you know them) and use fft() and ifft() instead of trying to do analytic forward and inverse fourier transforms.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!