• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Bernulli to Binomial

Joined
2/21/10
Messages
50
Points
18
Hello!

I need some help. As we know binomial distribution is nothing more than several times repeated bernulli random experiment. Bernulli random experiment has 2 outcomes: 0 and 1. So X = 0; 1. In case of Binomial model we have several Xs. Xi = X1 + X2 + ... +Xn. And its expectation and variance are computed by decomposing that total X into n Xs. X = X1 + X2 + ... +Xn and then finding its mean and variance. Where Xs are uncorrelated. What I dont understand is the meaning of total X. Does it represent the total number of successes? Or total number of outcomes?

Thank you
 
i personally was taught that X is your total number of successes, and n was your total number of trials. and your probability was of course X/n
 
as tylor said, X is total number of successes/failures, and n is total number of trials. So, you may repeat an experiment 10 (n) times but get 8 (X) of what you want, that is, 2 of your trails failed.
you can also define X as failures...
 
Back
Top