<< Chapter < Page | Chapter >> Page > |
As in the nonindependent case, we may utilize the minterm expansion and the minterm probabilities to calculate the probabilities of Boolean combinations of events. However,it is frequently more efficient to manipulate the expressions for the Boolean combination to be a disjoint union of intersections.
Suppose the class is independent, with respective probabilities 0.4, 0.6, 0.8. Determine . The minterm expansion is
It is not difficult to use the product rule and the replacement theorem to calculate the needed minterm probabilities. Thus . Similarly . The desired probability is the sum of these, 0.6880.
As an alternate approach, we write
Considerbly fewer arithmetic operations are required in this calculation.
In larger problems, or in situations where probabilities of several Boolean combinations are to be determined, it may be desirable to calculate all minterm probabilities then use theminterm vector techniques introduced earlier to calculate probabilities for various Boolean combinations. As a larger example for which computational aid is highly desirable, consideragain the class and the probabilities utilized in [link] , above.
Consider again the independent class with respective probabilities . We wish to calculate
There are minterm probabilities to be calculated. Each requires the multiplication of ten numbers. The solution with MATLAB is easy, as follows:
>>P = 0.01*[13 37 12 56 33 71 22 43 57 31];>>minvec10
Vectors are A1 thru A10 and A1c thru A10cThey may be renamed, if desired.>>F = (A1|(A3&(A4|A7c)))|(A2&(A5c|(A6&A8)))|(A9&A10c);>>pm = minprob(P);>>PF = F*pm'
PF = 0.6636
Writing out the expression for F is tedious and error prone. We could simplify as follows:
>>A = A1|(A3&(A4|A7c));>>B = A2&(A5c|(A6&A8));>>C = A9&A10c;>>F = A|B|C; % This minterm vector is the same as for F above
This decomposition of the problem indicates that it may be solved as a series of smaller problems. First, we need some central facts about independence ofBoolean combinations.
Suppose we have a Boolean combination of the events in the class and a second combination the events in the class . If the combined class is independent, we would expect the combinations of the subclasses to be independent. It is importantto see that this is in fact a consequence of the product rule, for it is further evidence that the product rule has captured the essence of the intuitive notion of independence.In the following discussion, we exhibit the essential structure which provides the basis for the following general proposition.
Proposition . Consider n distinct subclasses of an independent class of events. If for each i the event A i is a Boolean (logical) combination of members of the i th subclass, then the class is an independent class.
Notification Switch
Would you like to follow the 'Applied probability' conversation and receive update notifications?