Can anybody help me to solve this?

3 vues (au cours des 30 derniers jours)
ASWATHI V
ASWATHI V le 21 Août 2018
Commenté : Walter Roberson le 26 Août 2018
How to generate a Binomial random variable by using Bernoulli random variables? The idea is: (i) Generate Bernoulli random variables Yi's with mean p (ii) Set X = sum(Yi's).
This will give us a Binomial random variable with parameters n and p. (Convolution method). How to do this in MATLAB
  1 commentaire
ASWATHI V
ASWATHI V le 21 Août 2018
Let random variable X = Y1+Y2+.....Yn. are iid rvs. We have to Generate Binomial(n,p) rv X. For this first, we have to generate Bernoulli rvs {Yi's} with mean p. Then we have to find X = Summation(Yi's) (summation is sigma from 1 to n). Then it will give us Binomial rv with parameters n and p. we have to plot the pdf and cdf of this result.

Connectez-vous pour commenter.

Réponses (2)

Adam Danz
Adam Danz le 21 Août 2018
Modifié(e) : Adam Danz le 21 Août 2018
Does this help?
p=0.3;
n = 100000;
b=(rand(1,n)<p);
%test it
mean(b)
  2 commentaires
ASWATHI V
ASWATHI V le 22 Août 2018
Modifié(e) : ASWATHI V le 22 Août 2018
Is it similar to summation? We have to summed up 'n' Bernoulli random variables.
Adam Danz
Adam Danz le 22 Août 2018
I'm not sure what you mean. I don't know what this means: " Set X = sum(Yi's)."
If you want " a Binomial random variable with parameters n and p", then that's what I showed you. If you want to sum them,
x = sum(b)
It's not clear conceptually what you're looking for.

Connectez-vous pour commenter.


Torsten
Torsten le 22 Août 2018
Modifié(e) : Torsten le 22 Août 2018
p = 0.3;
n = 25;
nsample_binomial = 1000000;
for i = 1:nsample_binomial
bernoulli = (rand(1,n)<=p);
binomial(i) = sum(bernoulli);
end
%Test for mean and variance
mean(binomial)-n*p
var(binomial)-n*p*(1-p)
  4 commentaires
ASWATHI V
ASWATHI V le 26 Août 2018
But when I am plotting CDF and PDF it is not coming in the same way as we need. We cant use cdfplot for plotting CDF, First we have to plot the PDF and from that the CDF. But its not getting.
Walter Roberson
Walter Roberson le 26 Août 2018

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by