blob: e1d2e8cd4d1c0f9ce5973ab801fae987ce81a615 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pdd= 0.09;
pda = 0.21;
pad = 0.21;
paa = 0.49;
disp(pdd, "Probability that the number of acceptable components is 0 is")
disp(pda+pad, "Probability that the number of acceptable components is 1 is")
disp(paa, "Probability that the number of acceptable components is 2 is")
disp(pdd, "Probability that I is 0 is")
disp(paa+pad+pda, "Probability that I is 1 is")
|