Problems with Matlab Projects? You may face many Problems, but do not worry we are ready to solve your Problems. All you need to do is just leave your Comments. We will assure you that you will find a solution to your project along with future tips. On Request we will Mail you Matlab Codes for Registered Members of this site only, at free service...Follow Me.

MATLAB and Independent Classes


MATLAB and Independent Classes

In the unit on Minterms, we show how to use minterm probabilities and minterm vectors to calculate probabilities of Boolean combinations of events. In Independence of Events we show that in the independent case, we may calculate all minterm probabilities from the probabilities of the basic events. While these calculations are straightforward, they may be tedious and subject to errors. Fortunately, in this case we have an m-function minprob which calculates all minterm probabilities from the probabilities of the basic or generating sets. This function uses the m-function mintable to set up the patterns of p's and q's for the various minterms and then takes the products to obtain the set of minterm probabilities.

EXAMPLE 1

>> pm = minprob(0.1*[4 7 6])    pm = 0.0720  0.1080  0.1680  0.2520  0.0480  0.0720  0.1120  0.1680 
It may be desirable to arrange these as on a minterm map. For this we have an m-function minmap which reshapes the row matrix pm, as follows:
>> t = minmap(pm) t = 0.0720    0.1680    0.0480    0.1120     0.1080    0.2520    0.0720    0.1680 
Probability of occurrence of k of n independent events
In Example 2, we show how to use the m-functions mintable and csort to obtain the probability of the occurrence of k of n events, when minterm probabilities are available. In the case of an independent class, the minterm probabilities are calculated easily by minprob, It is only necessary to specify the probabilities for the n basic events and the numbers k of events. The size of the class, hence the mintable, is determined, and the minterm probabilities are calculated by minprob. We have two useful m-functions. If P is a matrix of the n individual event probabilities, and k is a matrix of integers less than or equal to n, then
functiony=ikn(P,k) calculates individual probabilities that k of n occur
functiony=ckn(P,k) calculates the probabilities that k or more occur

EXAMPLE 2

>> p = 0.01*[13 37 12 56 33 71 22 43 57 31]; >> k = [2 5 7]; >> P = ikn(p,k) P =    0.1401    0.1845    0.0225       % individual probabilities >> Pc = ckn(p,k) Pc =   0.9516    0.2921    0.0266       % cumulative probabilities 
Reliability of systems with independent components
Suppose a system has n components which fail independently. Let Ei be the event the ith component survives the designated time period. Then Ri=P(Ei) is defined to be the reliability of that component. The reliability R of the complete system is a function of the component reliabilities. There are three basic configurations. General systems may be decomposed into subsystems of these types. The subsystems become components in the larger configuration. The three fundamental configurations are:
  1. Series. The system operates iff all n components operate: R=
    n
    i=1
    Ri
  2. Parallel. The system operates iff not all components fail: R=1
    n
    i=1
    (1Ri)
  3. k of n. The system operates iff k or more components operate. R may be calculated with the m-function ckn. If the component probabilities are all the same, it is more efficient to use the m-function cbinom (see Bernoulli trials and the binomial distribution, below).
MATLAB solution. Put the component reliabilities in matrix RC=[R1R2Rn]
  1. Series Configuration
      >> R = prod(RC)     % prod is a built in MATLAB function 
  2. Parallel Configuration
      >> R = parallel(RC) % parallel is a user defined function 
  3. k of n Configuration
      >> R = ckn(RC,k)    % ckn is a user defined function (in file ckn.m). 

EXAMPLE 3

There are eight components, numbered 1 through 8. Component 1 is in series with a parallel combination of components 2 and 3, followed by a 3 of 5 combination of components 4 through 8 (see Figure 1 for a schematic representation). Probabilities of the components in order are
0.950.900.920.800.830.910.850.85(1)
The second and third probabilities are for the parallel pair, and the last five probabilities are for the 3 of 5 combination.
>> RC = 0.01*[95 90 92 80 83 91 85 85];        % Component reliabilities >> Ra = RC(1)*parallel(RC(2:3))*ckn(RC(4:8),3) % Solution Ra = 0.9172 
Figure 1: Schematic representation of the system in Example 3
a representation of a system with 8 components

EXAMPLE 4

>> RC = 0.01*[95 90 92 80 83 91 85 85];    % Component reliabilities 1--8 >> Rb = prod(RC(1:2))*parallel([RC(3),ckn(RC(4:8),3)])     % Solution Rb = 0.8532 
Figure 2: Schematic representation of the system in Example 4
Another 8 component system schematic
A test for independence
It is difficult to look at a list of minterm probabilities and determine whether or not the generating events form an independent class. The m-function imintest has as argument a vector of minterm probabilities. It checks for feasible size, determines the number of variables, and performs a check for independence.

EXAMPLE 5

>> pm = 0.01*[15 5 2 18 25 5 18 12];   % An arbitrary class >> disp(imintest(pm)) The class is NOT independent Minterms for which the product rule fails      1     1     1     0      1     1     1     0   

EXAMPLE 6

 >> pm = [0.10 0.15 0.20 0.25 0.30]: %An improper number of probabilities >> disp(imintest(pm)) The number of minterm probabilities incorrect 

EXAMPLE 7

 >> pm = minprob([0.5 0.3 0.7]); >> disp(imintest(pm)) The class is independent 

Probabilities of Boolean combinations

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.

EXAMPLE 8: A simple Boolean combination

Suppose the class {A,B,C{ is independent, with respective probabilities 0.4, 0.6, 0.8. Determine P(ABC). The minterm expansion is
ABC=M(3,4,5,6,7),sothatP(ABC)=p(3,4,5,6,7)(2)
It is not difficult to use the product rule and the replacement theorem to calculate the needed minterm probabilities. Thusp(3)=P(Ac)P(B)P(C)=0.60.60.8=0.2280. Similarly p(4)=0.0320,p(5)=0.1280,p(6)=0.0480,p(7)=0.1920 . The desired probability is the sum of these, 0.6880.
As an alternate approach, we write
ABC=AAcBC,sothatP(ABC)=0.4+0.60.60.8=0.6880(3)
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 the minterm vector techniques introduced earlier to calculate probabilities for various Boolean combinations. As a larger example for which computational aid is highly desirable, consider again the class and the probabilities utilized in Example 2, above.

EXAMPLE 9

Consider again the independent class {E1,E2,,E10{ with respective probabilities {0.130.370.120.560.330.710.220.430.570.31{. We wish to calculate
P(F)=P(E1,,E3,(E4E7c),,E2,(E5cE6E8),,E9,E10c)(4)
There are 210=1024 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 A10c They 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 of Boolean combinations.

Independent Boolean combinations

Suppose we have a Boolean combination of the events in the class {Ai:1in{ and a second combination the events in the class {Bj:1jm{. If the combined class{Ai,Bj:1in,1jm{ is independent, we would expect the combinations of the subclasses to be independent. It is important to 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 Ai is a Boolean (logical) combination of members of the ith subclass, then the class{A1,A2,,An{ is an independent class.
Verification of this far reaching result rests on the minterm expansion and two elementary facts about the disjoint subclasses of an independent class. We state these facts and consider in each case an example which exhibits the essential structure. Formulation of the general result, in each case, is simply a matter of careful use of notation.
  1. A class each of whose members is a minterm formed by members of a distinct subclass of an independent class is itself an independent class.

    EXAMPLE 10

    Consider the independent class {A1,A2,A3,B1,B2,B3,B4{, with respective probabilities 0.4, 0.7, 0.3, 0.5, 0.8, 0.3, 0.6. Consider M3, minterm three for the class {A1,A2,A3{, and N5, minterm five for the class {B1,B2,B3,B4{. Then
    P(M3)=P(A1cA2A3)=0.60.70.3=0.126andP(N5)=P(B1cB2B3cB4)=0.50.80.70.6=0.168(5)
    Also

    P(M3N5)=P(A1cA2A3B1cB2B3cB4)=0.60.70.30.50.80.70.6
    =(0.60.70.3)(0.50.80.70.6)=P(M3)P(N5)=0.0212
    (6)
    The product rule shows the desired independence.
    Again, it should be apparent that the result holds for any number of Ai and Bj; and it can be extended to any number of distinct subclasses of an independent class.
  2. Suppose each member of a class can be expressed as a disjoint union. If each auxiliary class formed by taking one member from each of the disjoint unions is an independent class, then the original class is independent.

    EXAMPLE 11

    Suppose A=A1A2A3 and B=B1B2, with {Ai,Bj{ independent for each pair i,j. Suppose
    P(A1)=0.3,P(A2)=0.4,P(A3)=0.1,P(B1)=0.2,P(B2)=0.5(7)
    We wish to show that the pair {A,B{ is independent; i.e., the product rule P(AB)=P(A)P(B) holds.
    COMPUTATION
    P(A)=P(A1)+P(A2)+P(A3)=0.3+0.4+0.1=0.8andP(B)=P(B1)+P(B2)=0.2+0.5=0.7(8)
    Now
    AB=(A1A2A3)(B1B2)=A1B1A1B2A2B1A2B2A3B1A3B2(9)
    By additivity and pairwise independence, we have

    P(AB)=P(A1)P(B1)+P(A1)P(B2)+P(A2)P(B1)+P(A2)P(B2)+P(A3)P(B1)+P(A3)P(B2)
    =0.30.2+0.30.5+0.40.2+0.40.5+0.10.2+0.10.5=0.56=P(A)P(B)
    (10)
    The product rule can also be established algebraically from the expression for P(AB), as follows:

    P(AB)=P(A1)[P(B1)+P(B2)]+P(A2)[P(B1)+P(B2)]+P(A3)[P(B1)+P(B2)]
    =[P(A1)+P(A2)+P(A3)][P(B1)+P(B2)]=P(A)P(B)
    (11)
    It should be clear that the pattern just illustrated can be extended to the general case. If
    A=
    n
    i=1
    AiandB=
    m
    j=1
    Bj,witheachpair{Ai,Bj{independent
    (12)
    then the pair {A,B{ is independent. Also, we may extend this rule to the triple {A,B,C{
    A=
    n
    i=1
    Ai,B=
    m
    j=1
    Bj,andC=
    r
    k=1
    Ck,witheachclass{Ai,Bj,Ck{independent
    (13)
    and similarly for any finite number of such combinations, so that the second proposition holds.
  3. Begin with an independent class E of n events. Select m distinct subclasses and form Boolean combinations for each of these. Use of the minterm expansion for each of these Boolean combinations and the two propositions just illustrated shows that the class of Boolean combinations is independent
    To illustrate, we return to Example 9, which involves an independent class of ten events.

    EXAMPLE 12: A hybrid approach

    Consider again the independent class {E1,E2,,E10{ with respective probabilities {0.130.370.120.560.330.710.220.430.570.31{. We wish to calculate
    P(F)=P(E1,,E3,(E4E7c),,E2,(E5cE6E8),,E9,E10c)(14)
    In the previous solution, we use minprob to calculate the 210=1024 minterms for all ten of the Ei and determine the minterm vector for F. As we note in the alternate expansion of F,
    F=ABC,whereA=E1E3(E4E7c)B=E2(E5cE6E8)C=E9E10c(15)
    We may calculate directly P(C)=0.570.69=0.3933. Now A is a Boolean combination of {E1,E3,E4,E7{ and B is a combination of {E2,E5,E6,E8{. By the result on independence of Boolean combinations, the class {A,B,C{ is independent. We use the m-procedures to calculate P(A) and P(B). Then we deal with the independent class {A,B,C{ to obtain the probability of F.
    >> p  = 0.01*[13 37 12 56 33 71 22 43 57 31]; >> pa = p([1 3 4 7]);     % Selection of probabilities for A >> pb = p([2 5 6 8]);     % Selection of probabilities for B >> pma = minprob(pa);     % Minterm probabilities for calculating P(A) >> pmb = minprob(pb);     % Minterm probabilities for calculating P(B) >> minvec4; >> a = A|(B&(C|Dc));      % A corresponds to E1, B to E3, C to E4, D to E7 >> PA = a*pma' PA = 0.2243 >> b = A&(Bc|(C&D));      % A corresponds to E2, B to E5, C to E6, D to E8 >> PB = b*pmb' PB = 0.2852 >> PC = p(9)*(1 - p(10)) PC = 0.3933 >> pm = minprob([PA PB PC]); >> minvec3                % The problem becomes a three variable problem >> F = A|B|C;             % with {A,B,C} an independent class >> PF = F*pm' PF = 0.6636               % Agrees with the result of Example 7

0 comments:

Post a Comment

Recent Comments

Popular Matlab Topics

Share your knowledge - help others

Crazy over Matlab Projects ? - Join Now - Follow Me

Sites U Missed to Visit ?

Related Posts Plugin for WordPress, Blogger...

Latest Articles

Special Search For Matlab Projects

MATLAB PROJECTS

counter

Bharadwaj. Powered by Blogger.