Distribution of Random variables
Afficher commentaires plus anciens
I am trying distribution of a random variable X=Y1+Y2+……+Yn where Y1,Y2…,Yn are i.i.d. uniformly distributed random variables? What can you conclude from the resulting PDF?
2 commentaires
Sasi
le 11 Nov 2023
Consider the random variables 𝑌1 = 𝑋1 and 𝑌2 = 𝑋1 + 𝑋2 in answering the following: 7.1 If 𝑋1 and 𝑋2 are uniform random variables, plot the scatter diagram of 𝑌2 vs. 𝑌1 using MATLAB. What do you notice?
Dyuman Joshi
le 13 Nov 2023
@Sasi what have you tried yet?
See Walter's answer below for a hint.
Réponses (1)
Walter Roberson
le 24 Nov 2017
n = 2000;
histogram( sum(rand(1000, n)), n/10 )
What do you observe?
2 commentaires
Chung Di
le 24 Nov 2017
Walter Roberson
le 24 Nov 2017
If you
histogram(sum(rand(5000,2000)),200)
then what distribution does the shape look like? Here, the 5000 is the number of variables being added together.
Hint: "central limit"
Catégories
En savoir plus sur Uniform Distribution (Continuous) dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!