If the probability of failure of a single drive is 0.000001 per 1,000 hours, what is the probability of failure if exactly:

a. one drive in an array of four fails?
b. two drives in an array of four fails?


a. In order for one failure to occur, three drives must not fail and one drive must fail. If p is the
probability of failure, 1 ? p is the probability of not failing. Therefore, the chance of one failure is p x (1 ?
p) x (1 ? p) x (1 ? p) = p(1 ? p)3. However, as any one drive out of four can fail, there are 4C1 ways = 4!/3!
= 4 of suffering one failed disk out of four.
The probability of failure is 4 p(1 ? p)3 or 0.000004 per 1,000 hours.

b. For two failures to occur two drives must fail and two must not fail. The probability of two failures and
two non?failures is p2(1 ? p)2
In this case, there 4C2 ways = 4 x 3 x 2/2 = 6 ways of suffering two failed disks out of four. The
probability is approximately 6 x 10?12.

Computer Science & Information Technology

You might also like to view...

What is the output of the following code fragement?

double size, volume=16.0; size = sqrt(sqrt(volume)) / 3; cout.setf(ios::fixed) cout.setf(ios::showpoint); cout.precision(2); cout << size; a. 0.67 b. 0.6666667 c. 0.00 d. 0

Computer Science & Information Technology

Write a method for Turtle to draw a rectangle. Pass in the width and height for the rectangle.

What will be an ideal response?

Computer Science & Information Technology

What will be displayed after this program is coded and run?

``` 1. var shirt = "blue"; 2. var pants = "gray"; 3. var clothes = wearIt(shirt, pants); 4. function wearIt( x, y) 5. { 6. var myOutfit = "Today I will wear a " + pants + ? " shirt and " + shirt + " pants."; 7. return myOutfit; 8. } 9. document.write(clothes); ``` a. nothing ? invalid function call b. Today I will wear a blue shirt and gray pants. c. Today I will wear a gray shirt and blue pants. d. blue gray

Computer Science & Information Technology

To create a mail merge using envelopes, click the Start Mail Merge button, then click Envelopes.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology