-
Notifications
You must be signed in to change notification settings - Fork 0
/
probability.json
605 lines (605 loc) · 41.9 KB
/
probability.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
{
"formula": "RANDOM EXPERIMENT:\nA random experiment is an experiment or a process in which all possible outcomes are known but the exact outcome cannot be predicted earlier.\n\nSAMPLE SPACE:\nThe set of all possible outcomes of a random experiment is called sample space.\n\nEXAMPLES:\n\n1. Tossing a coin\nS = {Head, Tail}\nIf n coins are tossed, n(S) = 2^n\n\n2. Throwing an unbiased die\nS = {1, 2, 3, 4, 5, 6}\nIf n dice are thrown, n(S) = 6^n\n\n3. Drawing a card from a pack of well-shuffled cards.\n(i) There are 52 cards in a pack. \n(ii) There are four suits, Hearts, Diamonds, Spades and Clubs each containing 13 cards. \n(iii) They consist of an Ace, a Jack, a Queen, a King and numbers from 2 to 10. \n(iv) Hearts and Diamonds are red. Spades and Clubs are black.\n\nProbability of occurrence of an event P(E) = n(E) / n(S)\n\n (i) P(S) = 1\n (ii) 0≤P(E)≤1",
"problems": [
{
"id": 1,
"answerIndex": 2,
"answers": ["5/33", "2/11", "19/66", "38/66"],
"question": "A bag contains 5 red balls, 3 blue balls and 4 green balls. Two balls are drawn out at random. Find the probability that they will be of the same colour.",
"solution": "No. of ways of drawing 2 balls from 12 balls \nn(S) = 12C2 = (12*11)/(2*1) = 66\nNo. of ways of drawing two balls of the same colour \nn(E) = 5C2+3C2+4C2 \n = (5*4/2)+(3*2/2)+(4*3/2) = 19\nP(E) = n(E)/n(S) = 19/66"
},
{
"id": 2,
"answerIndex": 3,
"answers": ["5/1326", "2/663", "8/1326", "8/663"],
"question": "From an ordinary pack of cards, two cards are drawn out at random. Find the probability that they consist of a king and a queen.",
"solution": "n(S) = 52C2 = 52*51/2 = 1326\n\nn(E) = 4C1*4C1 = 16\n\nP(E) = 16/1326 = 8/663"
},
{
"id": 3,
"answerIndex": 2,
"answers": ["5/18", "1/6", "5/36", "7/36"],
"question": "A and B throw a dice. Find the probability that the sum of their throws is 6.",
"solution": "n(S) = 36\n\nE = {(1,5),(2,4),(3,3),(4,2),(5,1)}\n\nn(E) = 5\n\nP(E) = 5/36"
},
{
"id": 4,
"answerIndex": 2,
"answers": ["1/4", "5/8", "3/8", "3/4"],
"question": "Three coins are tossed. Find the probability of getting two heads and a tail.",
"solution": "S={HHH,HHT,HTH,HTT,THH,TTH,THT,TTT}\nn(S) = 8\nE = {HHT,HTH,THH}\nn(E) = 3\nP(E) = 3/8"
},
{
"id": 5,
"answerIndex": 2,
"answers": ["1/4", "1/32", "1/16", "1/5"],
"question": "Out of 5 children, the eldest is a girl. Find the probability that the rest are boys.",
"solution": "Probability of a boy = 1/2\n\nP(the remaining 4 are boys) \n= (1/2)*(1/2)*(1/2)*(1/2) = 1/16"
},
{
"id": 6,
"answerIndex": 0,
"answers": ["1/4", "2/9", "1/6", "1/5"],
"question": "Two dice are thrown simultaneously. Find the probability of getting a prime number on both the dice.",
"solution": "n(S) = 36\n\nE = {(2,2),(2,3),(2,5),(3,2),(3,3),(3,5),(5,2),(5,3),(5,5)}\n\nn(E) = 9\n\nP(E) = 9/36 = 1/4"
},
{
"id": 7,
"answerIndex": 3,
"answers": ["2/13", "1/13", "4/13", "3/13"],
"question": "A card is drawn at random from a pack of well-shuffled cards. What is the probability that the card is a face card?",
"solution": "There are 3 face cards in each suit. \n\nHence, a total of 12 face cards in a pack.\n\nP(E) = 12/52 = 3/13"
},
{
"id": 8,
"answerIndex": 1,
"answers": ["1/8", "7/8", "5/8", "3/4"],
"question": "What is the probability of getting at most two tails in tossing three fair coins?",
"solution": "Probability of getting three tails \n= 1/8\nProbability of getting atmost two tails \n= 1-(1/8) = 7/8"
},
{
"id": 9,
"answerIndex": 0,
"answers": ["17/42", "5/42", "15/42", "7/42"],
"question": "Three balls are drawn out at random from a bag containing 4 red balls and 5 yellow balls. What is the probability of getting at least two red balls?",
"solution": "n(S) = 9C3 = (9*8*7)/(3*2*1) = 84\n\nn(E) = No. of ways of drawing 2 red balls and 1 yellow ball+ \nNo. of ways of drawing 3 red balls\n = (4C2*5C1) + (4C3) = 34\n\nP(E) = 34/84 = 17/42"
},
{
"id": 10,
"answerIndex": 1,
"answers": ["1/2", "1/3", "1/4", "1/6"],
"question": "Two fair dice are thrown. What is the probability of getting a sum that is a multiple of 3?",
"solution": "n(S) = 36\n\nE = {(1,2),(1,5),(2,1),(2,4),(3,3),(3,3),(4,2),(4,5),(5,1),(5,4),(6,3),(6,6)}\n\nn(E) = 12\n\nP(E) = 12/36 = 1/3"
},
{
"id": 11,
"answerIndex": 2,
"answers": ["1/4", "1/13", "4/13", "17/52"],
"question": "The probability that a card drawn from a pack will be a queen or a spade is",
"solution": "n(S) = 52\n\nn(E) = No. of spades + No. of queens in other suits \n = 13+3 = 16\nP(E) = 16/52 = 4/13"
},
{
"id": 12,
"answerIndex": 2,
"answers": ["2/3", "4/9", "38/87", "37/88"],
"question": "A teacher selects two students at random from a class of 30 students. If there are 10 boys and 20 girls in the class, find the probability that both of the selected students are girls.",
"solution": "n(S) = 30C2\n\nn(E) = 20C2\n\nP(E) = 38/87"
},
{
"id": 13,
"answerIndex": 0,
"answers": ["153/190", "153/380", "9/10", "19/20"],
"question": "A box contains 20 watches of which 2 are defective. 2 watches are drawn out of the box. Find the probability that both the drawn watches are in good condition.",
"solution": "n(S) = 20C2 = 190\n\nn(E) = 18C2 = 153\n\nP(E) = 153/190"
},
{
"id": 14,
"answerIndex": 0,
"answers": ["1/30", "2/15", "1/3", "11/30"],
"question": "Two friends appear for an interview. The probability of each of them getting selected is 1/5 and 1/6 respectively. Find the probability that both are selected.",
"solution": "P(both being selected) \n= (1/5)*(1/6) = 1/30"
},
{
"id": 15,
"answerIndex": 1,
"answers": ["4/19", "7/19", "12/19", "21/95"],
"question": "A box contains 20 electric bulbs, out of which 4 are defective. Two bulbs are chosen at random from this box. The probability that at least one of these is defective is",
"solution": "P(No bulb is defective) \n= 16C2/20C2 = 12/19\nP(Atleast one is defective) \n= 1-(12/19) = 7/19"
},
{
"id": 16,
"answerIndex": 0,
"answers": ["1/2", "1/5", "4/10", "7/10"],
"question": "A set contains the integers from -5 to +4. A number x is selected at random from the set. Find the probability that |x|>2.",
"solution": "S= {-5,-4,-3,-2,-1,0,1,2,3,4}\n\nNumbers with |x|>2 \nE = {-5,-4,-3,3,4}\n\nn(S) = 10\nn(E) = 5\n\nP(E) = 1/2"
},
{
"id": 17,
"answerIndex": 3,
"answers": ["5/36", "7/18", "4/9", "5/12"],
"question": "Two fair dice are tossed. What is the probability of getting a sum that is a prime number?",
"solution": "n(S) = 36\n\nThe sum can take a maximum value of 12. The prime numbers in that range are 2,3,5,7 and 11.\n\nE = { (1,1),(1,2),(2,1),(1,4),(2,3),(3,2),(4,1),(1,6),(2,5),(3,4),(4,3),(5,2),(6,1),(5,6),(6,5) }\n\nn(E) = 15\n\nP(E) = 15/36 = 5/12"
},
{
"id": 18,
"answerIndex": 0,
"answers": ["6", "24", "9", "12"],
"question": "A four-digit number is formed using the digits 1,2,3 and 5 without repetition. Find the probability that the number will be divisible by 5.",
"solution": "For the number to be divisible by 5, the last digit should be 5.\n\nThe first 3 digits can be arranged in any order. \n\nNo. of ways of arranging 3 digits\n= 3P3\n= 3!\n= 6"
},
{
"id": 19,
"answerIndex": 3,
"answers": ["1/24", "1/12", "10/24", "1/3"],
"question": "Two brothers appeared for an exam. The probability of each of them getting selected is 1/4 and 1/6 respectively. Find the probability that only one of the two are selected.",
"solution": "Probability that only of the two are selected\n= P(A alone selected)+P(B alone selected)\n= P(A selected)*P(B not selected)+\nP(A not selected)*P(B selected)\n= [(1/4)*(5/6)]+[(3/4)*(1/6)]\n= [5/24]+[3/24]\n= 8/24\n= 1/3"
},
{
"id": 20,
"answerIndex": 2,
"answers": ["1/2", "1/3", "47/87", "35/87"],
"question": "A bag contains 10 pink boxes and 20 blue boxes. 2 boxes are picked at random. Find the probability that they are of the same colour.",
"solution": "n(S) = Selecting 2 from 30 boxes\n = 30C2\n = 435\nn(E) = Selecting 2 pink or 2 blue boxes\n = 10C2+20C2\n = 45+190\n = 235\nP(E) = n(E)/n(S)\n = 47/87"
},
{
"id": 21,
"answerIndex": 1,
"answers": ["2/9", "19/27", "5/9", "1/27"],
"question": "A man can hit a target once in 3 shots. If he fires 3 shots in succession, find the probability that he will hit his target.",
"solution": "Probability of hitting the target is the sum of the probability of hitting in \n(i) any 1 of the 3 shots;\n(ii) any 2 of the 3 shots or\n(iii) all of the shots.\nHence\nP(E) = 1-Prob of not hitting in 3 shots\n\nProbability of hitting the target in 1 shot\n= 1/3\nProbability of not hitting the target in 1 shot\n= 2/3\nProbability of not hitting the target in 3 shots\n= (2/3)*(2/3)*(2/3)\n= 8/27\nProbability of hitting in 3 shots\n= 1-(8/27)\n= 19/27"
},
{
"id": 22,
"answerIndex": 3,
"answers": ["7/11", "4/11", "11/18", "7/18"],
"question": "The odds against an event are 11:7. Find the probability that the event will occur.",
"solution": "If the odds against an event are 11:7, it means that out of 11+7=18 times,\nit does not occur 11 times and\noccurs 7 times\nProbability of occurrence\n= 7/18"
},
{
"id": 23,
"answerIndex": 3,
"answers": ["169/10200", "1/64", "169/1024", "2197/132600"],
"question": "Find the probability that the first card drawn from a standard deck of cards is a diamond, the second is a spade and the third is a heart. The cards are drawn without replacement.",
"solution": "Probability\n= (13/52)*(13/51)*(13/50)\n= 2197/132600"
},
{
"id": 24,
"answerIndex": 2,
"answers": ["3/4", "5/8", "3/8", "1/4"],
"question": "There are 4 hotels in a town. If 3 men check into the hotels in a day, find the probability that each checks into a different hotel.",
"solution": "No. of ways in which 3 men can check into 4 hotels\nn(S) = 4*4*4 = 64\nNo. of ways in which they check into different hotels\nn(E) = 4*3*2 = 24\nP(E) = 24/64 = 3/8"
},
{
"id": 25,
"answerIndex": 0,
"answers": ["5/22", "153/154", "9/22", "111/154"],
"question": "The odds in favor of an event are 7:4 while the odds against another event are 9:5. If the events are independent, find the probability that both of the events occur.",
"solution": "Probability that the first event will occur\n= 7/11\nProbability that the second event will not occur\n= 9/(9+5)\n= 9/14\nProbability that the second event will occur\n= 5/14\nProbability that both the events occur\n= (7/11)*(5/14)\n= 5/22"
},
{
"id": 26,
"answerIndex": 1,
"answers": ["3/20", "3/50", "1/15", "3/25"],
"question": "Tickets numbered 1 to 100 are placed in a box. Find the probability that a ticket selected at random has a number that is divisible by both 3 and 5.",
"solution": "For the number to be divisible by both 3 and 5, it should be a multiple of 15.\n\nE={15,30,45,60,75,90}\nn(E) = 6\nn(S) = 100\n\nP(E) = 6/100 = 3/50"
},
{
"id": 27,
"answerIndex": 0,
"answers": ["1/5", "1/10", "1/20", "1/4"],
"question": "Two integers are randomly selected from the below sets, one from A and the other from set B. Find the probability that the sum of the two integers is 11.\nA={1,2,3,4,5}\nB={6,7,8,9,10}",
"solution": "No. of ways of selecting 2 integers\n= n(selecting 1 number from A)*\nn(selecting 1 number from B)\n= 5*5\n= 25\n{1,10}, {2,9}, (3,8}, (4,7), {5,6}\nThese 5 pairs of integers have their sum as 11.\nn(E) = 5/25 = 1/5"
},
{
"id": 28,
"answerIndex": 1,
"answers": ["3/4", "2/3", "1/3", "1/6"],
"question": "A bag contains 2 red, 4 blue and 6 green balls. If one ball is drawn from the bag, what is the probablity that it is red or green?",
"solution": "E is the event of drawing a red or green ball.\n\nn(E) = 8\nn(S) = 12\nP(E) = 8/12 = 2/3"
},
{
"id": 29,
"answerIndex": 3,
"answers": ["1/2", "1/4", "1/8", "1/16"],
"question": "A card is selected at random from a pack of cards. After replacing it, another draw is made. Find the probability that the first card is a spade and the second is a club.",
"solution": "P(drawing a spade)\n= 13/52\n= 1/4\nP(drawing a club)\n= 1/4\nP(E) = (1/4)*(1/4)\n = 1/16"
},
{
"id": 30,
"answerIndex": 0,
"answers": ["13/27", "1/2", "7/11", "14/27"],
"question": "A bag contains 4 pink and 5 blue beads. Another bag contains 3 pink and 6 blue beads. Two beads are drawn, one from each bag. Find the probability that one is pink and the other is blue.",
"solution": "n(S) = 9C1*9C1 = 81\n\nNo. of ways of selecting a pink and a blue bead\n= [n(Pink from bag 1)*n(Blue from bag 2)]+\n[n(Blue from bag 1)*n(Pink from bag 2)]\nn(E) = (4*6)+(5*3)\n = 39\nP(E) = 13/27"
},
{
"id": 31,
"answerIndex": 2,
"answers": ["1/3", "1/2", "5/9", "17/36"],
"question": "In a single throw with two dice, find the probability that their sum is a multiple of either 3 or 4.",
"solution": "The sum of the throws has to be\n3, 4, 6, 8, 9, or 12\n\n3 - (1,2), (2,1)\n4 - (1,3), (2,2), (3,1)\n6 - (1,5), (2,4), (3,3), (4,2), (5,1)\n8 - (2,6), (3,5), (4,4), (5,3), (6,2)\n9 - (3,6), (4,5), (5,4), (6,3)\n12 - (6,6)\n\nNo. of possible ways n(E)\n= 2+3+5+5+4+1\n= 20\nn(S) = 36\n\nP(E) = 20/36 = 5/9\n\nIn general, when two dice are thrown, the number of ways of getting 'n' as the sum of the throws is\n(n-1) for 2≤n≤7\n(13-1) for 8≤n≤13"
},
{
"id": 32,
"answerIndex": 0,
"answers": ["24/91", "12/91", "12/49", "24/49"],
"question": "A man who goes to work long before sunrise every morning gets dressed in the dark. In his sock drawer, he has 6 black and 8 blue socks. What is the probability that his first pick was a black sock, but his second pick was a blue sock?",
"solution": "Probability of picking up a black sock first and a blue sock second\n= (6/14)*(8/13)\n= 24/91"
},
{
"id": 33,
"answerIndex": 3,
"answers": ["282/16807", "24/343", "36/343", "312/16807"],
"question": "There are 6 red balls, 8 blue balls and 7 green balls in a bag. If 5 are drawn with replacement, what is the probability that at least three are red?",
"solution": "P(3 red balls)\n= (6/21)*(6/21)*(6/21)*(15/21)*(15/21)\n= 200/16807\nP(4 red balls)\n= (6/21)*(6/21)*(6/21)*(6/21)*(15/21)\n= 80/16807\nP(5 red balls)\n= (6/21)*(6/21)*(6/21)*(6/21)*(6/21)\n= 32/16807\nTotal probability\n= 312/16801"
},
{
"id": 34,
"answerIndex": 1,
"answers": ["1/2", "1/3", "2/3", "1/6"],
"question": "A father purchased dress for his 3 daughters. The dresses are of same color but different size and they are kept in dark room. What is probability that all the 3 will not choose their own dress?",
"solution": "If the correct order is 123,\n231 and 312 are the two ways in which all 3 dont choose their own dress.\n\nTotal no. of ways of choosing\n= 3*2*1\n= 6\nP(choosing wrongly)\n= 2/6\n= 1/3"
},
{
"id": 35,
"answerIndex": 1,
"answers": ["1/2", "1/4", "1/6", "1/8"],
"question": "A drawer holds 4 red hats and 4 blue hats. What is probability of getting exactly 3 red hats or 3 blue hats when taking out 4 hats randomly out of the drawer and immediately returning every hat to the drawer before taking out the next?",
"solution": "P(getting a red hat in 1 draw)\n = 4/8 = 1/2\nP(getting a blue hat in 1 draw)\n= 1/2\nP(getting 3 red hats)\n= (1/2)*(1/2)*(1/2)\n= 1/8\nP(getting 3 blue hats)\n= 1/8\nP(getting 3 red hats or 3 blue hats)\n= (1/8)+(1/8)\n= 1/4"
},
{
"id": 36,
"answerIndex": 0,
"answers": ["15", "16", "18", "12"],
"question": "There are 4 different letters and 4 addressed envelopes. In how many ways can the letters be put in the envelopes so that atleast one letter goes to the correct address ?",
"solution": "No. of ways of putting 4 letters into 4 envelopes\n= 4!\n\nNo. of ways that no letter goes into the correct envelope\n= D4\n= 4!*[(1/2!)-(1/3!)+(1/4!)]\n= 24*[(12-4+1)/24]\n= 9\nP(atleast one letter goes into the correct envelope)\n= 24-9\n= 15"
},
{
"id": 37,
"answerIndex": 2,
"answers": ["1/8", "1/4", "3/8", "1/3"],
"question": "A man is known to speak truth 3 out of 4 times. He throws a die and reports that it is a 6. The probability that it is actually a 6 is",
"solution": "Let E be the event that it is actually a 6.\n\nn(E)\n= P(6)*P(truth)\n= (1/6)*(3/4)\n= 1/8\nn(S)\n= P(6)*P(truth) + P(number other than 6)*P(lie)\n= [(1/6)*(3/4)] + [(5/6)*(1/4)]\n= (3/24) + (5/24)\n= 1/3\nP(E)\n= n(E)/n(S)\n= (1/8) / (1/3)\n= 3/8"
},
{
"id": 38,
"answerIndex": 0,
"answers": ["137/216", "17/36", "173/216", "5/6"],
"question": "Eric throws two dice, and his score is the sum of the values shown. Sandra throws one die, and her score is the square of the value shown. What is the probability that Sandra's score will be strictly higher than Eric's score?",
"solution": "Sandra's score can be 1, 4, 9, 16, 25 or 36.\nEric's score ranges from 2 to 12.\n\n\nWhenever Sandra scores 16, 25 or 36, her score is definitely higher.\n36+36+36 = 108 ways\nIf she scores 1,\nEric's score will always be greater.\nIf she scores 4,\nher score will be higher only if Eric scores (1,1), (1,2) or (2,1)\n3 ways\nIf she scores 9,\nEric's score will be greater if he scores (3,6), (4,5), (5,4), (6,3), (4,6), (5,5), (6,4), (5,6), (6,5), (6,6)\nEric's score will be lesser in (36-10 =)26 ways.\n\nn(E) = 108+0+3+26\n = 137\n\nn(S) = No. of ways of throwing three dice\n = 6*6*6 = 216\n\nP(E) = 137/216"
},
{
"id": 39,
"answerIndex": 1,
"answers": ["1/3", "5/12", "1/2", "5/24"],
"question": "In a simultaneous throw of a pair of dice, find the probability of getting the sum more than 7.\n",
"solution": "n(S) = 36\n\n(2,6), (3,5), (3,6), (4,4), (4,5), (4,6), (5,3), (5,4), (5,5), (5,6), (6,2), (6,3), (6,4), (6,5), (6,6)\n\nn(E) = 15\n\nP(E) = 15/36 = 5/12"
},
{
"id": 40,
"answerIndex": 1,
"answers": ["110/221", "55/221", "111/221", "121/221"],
"question": "Two cards are drawn at random from a pack of 52 cards. What is the probability that either both are black or both are queens?",
"solution": "Probability that both are black\n= 26C2/52C2\n= 26*25/(52*51)\nProbability that both are queens\n= 4C2/52C2\n= 4*3/(52*51)\nProbability that both are black queens\n= 2C2/52C2\n= 2/(52*51)\n\nBlack queens are repeated in both. So we subtract them.\n\nP(BB or QQ)\n= P(BB)+P(QQ)-P(BQ&BQ)\n= 660/(52*51)\n= 55/221"
},
{
"id": 41,
"answerIndex": 2,
"answers": ["0.1", "0.15", "0.38", "0.56"],
"question": "A speaks truth 70% of the time; B speaks truth 80% of the time. What is the probability that both are contradicting each other?",
"solution": "P(contradiction)\n= P(A truth)*P(B lie) + P(B truth)*P(A lie)\n= (0.7*0.2) + (0.8*0.3)\n= 0.14+0.24\n= 0.38"
},
{
"id": 42,
"answerIndex": 0,
"answers": ["6!*10!/15!", "6!/15C6", "10!/15!", "6!*9!/14!"],
"question": "At a banquet, 9 women and 6 men are to be seated in a row of 15 chairs. If the entire seating arrangement is to be chosen at random, what is the probability that all of the men will be seated next to each other in 6 consecutive positions?",
"solution": "No. of ways in which 15 people can be seated in a row\n= 15!\n\n6 men should be seated together. They can be considered as a single element and should be seated with 9 women.\n\nNo. of ways of seating 10 people in a row\n= 10!\n\nNo. of ways in which the 6 men are seated\n= 6!\n\nP(E) = 6!*10!/15!"
},
{
"id": 43,
"answerIndex": 3,
"answers": ["0.09", "0.11", "0.55", "0.91"],
"question": "A certain jar contains 100 jelly beans: 50 white, 30 green, 10 yellow, 5 red, 4 purple, and 1 black. If a jelly bean is to be chosen at random, what is the probability that the jelly bean will be neither purple nor red?",
"solution": "P(purple)\n= 4/100\nP(red)\n= 5/100\nP(neither purple nor red)\n= 1-(4/100)-(5/100)\n= 1-(9/100)\n= 91/100\n= 0.91"
},
{
"id": 44,
"answerIndex": 1,
"answers": ["1/3", "3/7", "4/7", "3/4"],
"question": "The odds that a certain event will occur is the ratio of the probability that the event will occur to the probability that it will not occur. If the odds that Lee will win the match are 4 to 3, what is the probability that Lee will not win the match?",
"solution": "P(Lee won't win the match)\n= 3/(3+4)\n= 3/7"
},
{
"id": 45,
"answerIndex": 1,
"answers": ["1/125", "1/8", "9/16", "5/8"],
"question": "If one number is chosen at random from the first 1,000 positive integers, what is the probability that the number chosen is multiple of both 2 and 8?",
"solution": "All multiples of 8 will be a multiple of 2.\n\n1000/8 = 125\n\nn(E) = 125\nn(S) = 1000\n\nP(E) = 125/1000 = 1/8"
},
{
"id": 46,
"answerIndex": 0,
"answers": ["55/72", "11/18", "1/4", "1/12"],
"question": "In a group of three people, what is the probability that no two persons share the same month of birth?",
"solution": "n(S) = 12*12*12\nn(E) = 12*11*10\n\nP(E) = n(E)/n(S) = 55/72"
},
{
"id": 47,
"answerIndex": 0,
"answers": ["0", "12/212", "11/12", "1/12"],
"question": "After the typist writes 12 letters and addresses 12 envelopes, she inserts the letters randomly into the envelopes (1 letter per envelope). What is the probability that exactly 1 letter is inserted in an improper envelope?",
"solution": "If all the other 11 letters are inserted in the correct envelopes, the 12th one should also be in the correct envelope. Hence, the probability is zero."
},
{
"id": 48,
"answerIndex": 3,
"answers": ["0.75", "1", "0.5", "0.25"],
"question": "A circular dartboard of radius 1 foot is at a distance of 20 feet from you. You throw a dart at it and it hits the dartboard at some point Q in the circle. What is the probability that Q is closer to the center of the circle than the periphery?",
"solution": "The dart has to be inside the circle with a radius of 1/2 foot.\n\nArea of the inner circle\n= π/4 square feet\n\nArea of the outer circle\n= π square feet\n\nP(Q is closer to the center)\n= 1/4\n= 0.25"
},
{
"id": 49,
"answerIndex": 1,
"answers": ["1/2", "14/19", "37/38", "3/4"],
"question": "There are two boxes, one containing 10 red balls and the other containing 10 green balls. You are allowed to move the balls between the boxes so that when you choose a box at random and a ball at random from the chosen box, the probability of getting a red ball is maximized. This maximum probability is",
"solution": "1 red ball in a box.\nP(red ball) = 1\n\n9 red balls and 10 green balls in the other box.\nP(red ball) = 9/19\n\nTotal probability\n= (1/2)*1 + (1/2)*(9/19)\n= 14/19"
},
{
"id": 50,
"answerIndex": 2,
"answers": ["1/9", "4/9", "5/9", "2/3"],
"question": "For the FIFA world cup, Paul the octopus has been predicting the winner of each match with amazing success. It is rumored that in a match between 2 teams A and B, Paul picks A with the same probability as A's chances of winning. Let's assume such rumors to be true and that in a match between Ghana and Bolivia; Ghana the stronger team has a probability of 2/3 of winning the game. What is the probability that Paul will correctly pick the winner of the Ghana-Bolivia game?",
"solution": "P(Ghana winning)\n= 2/3\nP(Paul picking Ghana)\n= 2/3\nP(Bolivia winning)\n= 1/3\nP(Paul picking Bolivia)\n= 1/3\nP(Paul picking the correct winner)\n= (2/3)*(2/3) + (1/3)*(1/3)\n= (4/9)+(1/9)\n= 5/9"
},
{
"id": 51,
"answerIndex": 3,
"answers": ["37/256", "219/256", "128/256", "28/256"],
"question": "The mean and the variance of a binomial distribution are 4 and 2 respectively. Then the probability of 2 successes is",
"solution": "np = 4\nnpq = 2\n\n4q = 2\n\nq = 1/2\np = 1/2\nn = 8\n\nP(2) = 8C2 (p^2)(q^6)\n = 28*(1/2)^8\n = 28/256"
},
{
"id": 52,
"answerIndex": 1,
"answers": ["0.8", "0.48", "0.6", "0.14"],
"question": "A speaks the truth 80% of the times and B speaks the truth 60% of the times. What is the probability that they tell the truth at the same time?",
"solution": "P(A and B telling the truth)\n= 0.8*0.6\n= 0.48"
},
{
"id": 53,
"answerIndex": 0,
"answers": ["1/2", "9/19", "10/19", "9/10"],
"question": "There are 19 red balls and one black ball. Ten balls are put in a blue jar at random and the remaining 10 are put in a green jar. What is the possibility that the black ball is in the green jar?",
"solution": "The black ball has equal probability of ending up in either the blue jar or the green jar.\n\nSo, probabilty = 1/2"
},
{
"id": 54,
"answerIndex": 2,
"answers": ["A", "B", "C", "D"],
"question": "There is a die with 10 faces with the numbers 1-10 written on it. It is not known if it is fair or not. 2 captains want to toss the die for batting selection. What is the possible solution among the following?\n\nA) If no. is odd it is head, if no. is even it is tail\nB) If no. is odd it is tail, if no. is even it is head\nC) Toss the die until all the 10 digits appear on top face. And if the first number in the sequence is odd, then consider it as tail. If it is even, consider it as head.\nD) None of the above",
"solution": "Since it is not known if the die is fair or not,\noption C is the possible solution."
},
{
"id": 55,
"answerIndex": 3,
"answers": ["500/1001", "503/1001", "101/1001", "505/1001"],
"question": "There are 6 positive and 8 negative numbers. Four numbers are chosen at random and multiplied. The probability that the product is positive is",
"solution": "For the product to be positive, the numbers can be\n4 positive\n2 positive, 2 negative\n4 negative\n\nn(E)\n= 6C4+(6C2*8C2)+8C4\n= 15+420+70\n= 505\nn(S)\n= 14C4\n= 1001\n\nP(E)\n= 505/1001"
},
{
"id": 56,
"answerIndex": 2,
"answers": ["19/36", "2/3", "1/4", "14/25"],
"question": "Two dice are rolled together. What is the probability of getting two numbers whose product is odd?",
"solution": "Odd*Odd = Odd\n\nP(Odd) = 1/2\n\nP(E) = 1/2 * 1/2 = 1/4"
},
{
"id": 57,
"answerIndex": 3,
"answers": ["1/6", "1/3", "1/2", "2/3"],
"question": "If x is chosen randomly from the set {1,2,3,4} and y is to be chosen at random from the set {5,6,7}, what is the probability that xy will be even?",
"solution": "E = {(1,6), (2,5), (2,6), (2,7), (3,6), (4,5), (4,6), (4,7)}\n\nn(E) = 8\nn(S) = 4*3 = 12\n\nP(E) = 8/12 = 2/3"
},
{
"id": 58,
"answerIndex": 3,
"answers": ["1/4", "1/3", "7/18", "5/12"],
"question": "When two dice are tossed, what is the probability that the sum is a prime number?",
"solution": "E = {(1,1), (1,2), (1,4), (1,6), (2,1), (2,3), (2,5), (3,2), (3,4), (4,1), (4,3), (5,2), (5,6), (6,1), (6,5)}\n\nn(E) = 15\nn(S) = 36\n\nP(E) = 5/12"
},
{
"id": 59,
"answerIndex": 2,
"answers": ["1/4", "3/8", "1/2", "5/8"],
"question": "A box contains 100 balls, numbered from 1 to 100. If three balls are selected at random and with replacement from the box, what is the probability that the sum of the three numbers on the balls selected from the box will be odd?",
"solution": "O+O+O = Odd\nO+E+O = Even \nO+O+E = Even\nE+O+O = Even \nO+E+E = Odd \nE+O+E = Odd \nE+E+O = Odd\nE+E+E = Even\n\nIn 4 out of the 8 possibilites, the sum is odd.\n\nP(E) = 4/8 = 1/2"
},
{
"id": 60,
"answerIndex": 2,
"answers": ["5/8", "3/4", "7/8", "11/12"],
"question": "In a race, the odd favour of cars A,B,C,D are 1:3, 1:4, 1:6 and 1:8 respectively. Find the probability that one of them wins the race.",
"solution": "P(A) = 1/3\nP(B) = 1/4\nP(C) = 1/6\nP(D) = 1/8\n\nAll the events are mutually exclusive.\n\nRequired Probability\n= Sum of the 4 Probabilities\n= (1/3)+(1/4)+(1/6)+(1/8)\n= 7/8"
},
{
"id": 61,
"answerIndex": 1,
"answers": ["0.15", "0.20", "0.25", "0.30"],
"question": "A = {2, 3, 4, 5}\n\nB= {4, 5, 6, 7, 8}\n\nTwo integers are randomly selected from the sets above, one from set A and one from set B. What is the probability that the sum of the two integers will equal 9?",
"solution": "E = {(2,7), (3,6), (4,5), (5,4)}\n\nn(E) = 4\nn(S) = 4*5 = 20\n\nP(E) = 4/20 = 1/5 = 0.2"
},
{
"id": 62,
"answerIndex": 0,
"answers": ["7/19", "6/19", "5/19", "4/19"],
"question": "A box contains 20 electric bulbs, out of which 4 are defective. Two bulbs are chosen at random from this box. The probability that at least one of these is defective is",
"solution": "Please remember that Maximum portability is 1.\n\nSo we can get total probability of non defective bulbs and subtract it form 1 to get total probability of defective bulbs.\n\nSo here we go,\nTotal cases of non defective bulbs\n\n16C2=16*152*1=120total cases =20C2=20*192*1=190probability =120190=1219P of at least one defective =1-1219=719"
},
{
"id": 63,
"answerIndex": 0,
"answers": ["2/9", "1/4", "1/7", "1/5"],
"question": "A and B sit in a ring arrangement with 8 persons. What is the probability that A and B will sit together?",
"solution": "A and B should be together.\n\nn(S) = No. of ways in which 8 persons can sit around a table\n = 7!\n\nA&B should always be together. So they can be considered as a single person.\n\n9 persons can be seated around a table in 8! ways and\nA and B can be seated in 2! ways.\n\nn(E) = 8!*2!\n\nP(E) = 8!*2!/9! = 2/9"
},
{
"id": 64,
"answerIndex": 3,
"answers": ["1/7", "3/5", "2/11", "1/5"],
"question": "Find the probability that in a random arrangement of the letters of the word 'UNIVERSITY' the two I's come together.",
"solution": "The word UNIVERSITY has 10 letters. The letter I occurs twice.\n\nn(S)\n= No. of different ways of arranging the word\n= 10!/2!\n\nThe two I's should always come together. So, they can be considered as a single letter.\n\nn(E)\n= No. of ways of arranging 9 different letters\n= 9!\n\nP(E) = 9!*2/10! = 1/5"
},
{
"id": 65,
"answerIndex": 2,
"answers": ["52/55", "3/55", "41/44", "3/44"],
"question": "A box contains 3 purple, 4 orange and 5 green balls. Three balls are drawn at random. What is the probability that they are not of the same colour?",
"solution": "n(S) = 12C3 = (12*11*10)/6 = 220\n\nLet E be the event of drawing all balls of the same color.\n\nn(E) = 5C3+4C3+3C3 = 15\n\nP(E) = n(E)/n(S) = 15/220 = 3/44\n\nProbability that all balls are not of the same color\n= 1 - 3/44\n= 41/44"
},
{
"id": 66,
"answerIndex": 1,
"answers": ["5/37", "37/5", "11/13", "13/37"],
"question": "From a bag containing 4 green and 5 silver balls, a man drawn 3 balls at random. What are the odds against all these balls being silver?",
"solution": "n(S) = 9C3 = 9*8*7/6 = 84\n\nLet E be the event that all the balls are silver.\n\nn(E) = 5C3 = 10\n\nP(E) = 10/84 = 5/42\n\nProbability that all the balls are not silver\n= 1 - 5/42\n= 37/42\n\nOdds against all balls being silver\n= 37:5"
},
{
"id": 67,
"answerIndex": 0,
"answers": ["47/120", "1/480", "1/160", "1/120"],
"question": "In a race where 12 cars are running, the chance that car X will win is 1/6, that Y will win is 1/10 and that Z will win is 1/8. Assuming that a dead heat is impossible, find the chance that one of them will win.",
"solution": "P(X) = 1/6\nP(Y) = 1/10\nP(Z) = 1/8\n\nThe required probability is the sum of the three probabilities since they are mutually exclusive events.\n\nP(X)+P(Y)+P(Z)\n= 47/120"
},
{
"id": 68,
"answerIndex": 1,
"answers": ["5/12", "11/36", "1/3", "13/36"],
"question": "Two dice are thrown simultaneously. Find the probability of getting a multiple of 2 on one dice and a multiple of 3 on the other dice.",
"solution": "E = {(2,3),(4,3),(6,3),(2,6),(4,6),(6,6),(3,2),(3,4),(3,6),(6,2),(6,4)}\n\nn(E) = 11\nn(S) = 6*6 = 36\n\nP(E) = 11/36"
},
{
"id": 69,
"answerIndex": 0,
"answers": ["20,000", "25,000", "30,000", "15,000"],
"question": "In a certain lottery, the prize is Rs. 1 crore and 5000 tickets have been sold. What is the expectation of a man who holds 10 tickets?",
"solution": "(10/5000)*1,00,00,000\n= 20000"
},
{
"id": 70,
"answerIndex": 2,
"answers": ["2", "4", "5", "6"],
"question": "36 identical chairs must be arranged in rows with the same number of chairs in each row. Each row must contain at least 3 chairs and there must be at least 3 rows. A row is parallel to the front of the room. How many different arrangements are possible?",
"solution": "Let R be the number of rows and\nC be the number of columns.\n\nR and C can take the values {(6,6),(4,9),(9,4),(12,3),(3,12)}\n\nNo. of different arrangements\n= 5"
},
{
"id": 71,
"answerIndex": 3,
"answers": ["7/11", "7/30", "5/11", "7/15"],
"question": "A bag contains 3 white balls and 2 black balls. Another bag contains 2 white and 4 black balls. A bag and a ball are picked at random. The probability that the ball will be white is",
"solution": "P(white ball)\n= [(1/2)*(3/5)]+[(1/2)*(2/6)]\n= 7/15"
},
{
"id": 72,
"answerIndex": 3,
"answers": ["11/50", "11/49", "10/49", "11/50"],
"question": "Out of a pack of 52 cards, one is lost; from the remainder of the pack, two cards are drawn and are found to be spades. Find the chance that the missing card is a spade.",
"solution": "n(S) = 52-2 = 50\nn(E) = 13-2 = 11\n\nP(E) = 11/50"
},
{
"id": 73,
"answerIndex": 0,
"answers": ["1/120", "1/54", "1/24", "1/76"],
"question": "The letters B,G,I,N and R are rearranged randomly. Find the probability that the word 'BRING' will be formed.",
"solution": "No. of different arrangements possible\n= 5!\n= 120\n\n120 different words can be formed.\n\nProbability that 'BRING' will be formed\n= 1/120"
},
{
"id": 74,
"answerIndex": 2,
"answers": [
"5C4 * (4/5)^2 * (1/5)",
"(4/5)^4 *(1/5)",
"5C4 * (1/5) * (4/5)^4",
"None of these"
],
"question": "The probability that a student is not a swimmer is 1/5. Then the probability that out of the five students, four are swimmers is",
"solution": "No. of ways of selecting 4 students from 5\n= 5C4\n\nP(Non-Swimmer) = 1/5\nP(Swimmer) = 4/5\n\nRequired Probability\n= 5C4 *(1/5)*(4/5)^4"
},
{
"id": 75,
"answerIndex": 2,
"answers": ["7/10", "3/10", "2/5", "3/5"],
"question": "Tom and Dick are running in the same race. The probabilities of their winning are 1/5 and 1/2 respectively. Find the probability that neither of them will win the race.",
"solution": "Required Probability\n= [1-(1/5)]*[1-(1/2)]\n= (4/5)*(1/2)\n= 2/5"
},
{
"id": 76,
"answerIndex": 1,
"answers": ["55.5", "63.5", "75", "99.25"],
"question": "A pharmaceutical company made 3000 strips of tablets at a cost of Rs. 4800. The company gave away 1000 strips of tablets to doctors as free samples. A discount of 25% was allowed on the printed price. Find the ratio of profit if the price is raised from Rs. 3.25 to Rs. 4.25 per strip and if at the latter price, samples to doctors also included. (New profit/old profit)",
"solution": "Case I:\nCost of a strip = Rs.3.25\nDiscount = 25%\n\nProfit\n= (2000*3.25*0.75) - 4800\n= 75\n\nCase II:\nCost of a strip = Rs.4.25\nDiscount = 25%\nSamples to doctors are also included.\n\nProfit\n= (3000*4.25*0.75) - 4800\n= 4762.5\n\nNew Profit/Old Profit = 4762.5/75 = 63.5"
},
{
"id": 77,
"answerIndex": 0,
"answers": ["7/15", "7/9", "11/15", "7/11"],
"question": "A bag contains 3 green and 7 white balls. Two balls are drawn from the bag in succession without replacement. What is the probability that they are of different colors?",
"solution": "n(S) = 10C2 = 45\n\nn(E) = 3C1*7C1 = 21\n\nP(E) = 21/45 = 7/15"
},
{
"id": 78,
"answerIndex": 0,
"answers": ["16/69", "25/69", "28/69", "25/44"],
"question": "In a shirt factory, processes A, B and C respectively manufacture 25%, 35% and 40% of the total shirts. Of their respective productions, 5%, 4% and 2% of the shirts are defective. A shirt is selected at random from the production of a particular day. If it is found to be defective, what is the probability that it is manufactured by the process C?",
"solution": "% of shirts defective in A\n= 5% * 25%\n= 1.25%\n% of shirts defective in B\n= 4% * 35%\n= 1.4%\n% of shirts defective in C\n= 2% * 40%\n= 0.8%\n\n% of the total shirts which are defective\n= (1.25+1.4+0.8)%\n= 3.45 %\n\nP(Defective) = 0.0345\nP(C & Defective) = 0.8% = 0.008\n\nP(C|Defective)\n= P(C & Defective)/P(Defective)\n= 0.008/0.345\n= 0.231\n= 16/69"
},
{
"id": 79,
"answerIndex": 1,
"answers": ["5 and 6", "6 and 5", "11 and 0", "10 and 1"],
"question": "A and B throw one dice for a stake of Rs. 11, which is to be won by the player who first throws a six. The game ends when the stake is won by A or B. If A has the first throw, what are their respective expectations?",
"solution": "P(throwing a 6) = 1/6\nP(not throwing a 6) = 5/6\n\nP(A winning the stake in the first throw) = 1/6\n\nP(A winning the stake in the second throw)\n= (5/6)*(5/6)*(1/6)\n\n..... and goes on.\n\nP(B winning the stake in the first throw)\n= (5/6)*(1/6)\nP(B winning the stake in the second throw)\n= (5/6)*(5/6)*(5/6)*(1/6)\n..... and goes on.\n\nP(A winning)\n= 1/6 + ((5/6)*(5/6)*(1/6)) + .......\n= (1/6)*[1+(25/36)+(25/36)²+.....]\n\nFor the GP,\na,ar,ar²,ar³,.....\n\nSum of terms\n= a/(1-r)if r<1\n\nP(A winning)\n= (1/6)*[1/(1- 25/36)]\n= 6/11\n\nE(A winning)\n= P(A winning) * 11\n= 6\n\nP(B winning)\n= [(5/6)*(1/6)] + ((5/6)*(5/6)*(5/6)*(1/6)) + .......\n= (5/6)*(1/6)*[1+(25/36)+(25/36)²+.....]\n= (5/6)*(6/11)\n= 5/11\n\nE(B winning)\n= 5\n"
},
{
"id": 80,
"answerIndex": 2,
"answers": ["488", "538", "578", "598"],
"question": "All the words formed by using all the letters A,L,B,E,S,T are arranged, with no repetition, in the alphabetical order, as in a dictionary. What is the rank of the word 'STABLE' in this order?",
"solution": "No. of words starting with A = 5!\nNo. of words starting with B = 5!\nNo. of words starting with E = 5!\nNo. of words starting with L = 5!\n\nNo. of words starting with SA = 4!\nNo. of words starting with SB = 4!\nNo. of words starting with SE = 4!\nNo. of words starting with SL = 4!\n\nNo. of words starting with STAB = 2!\nSTABEL\nSTABLE\n\nThe rank of STABLE\n= (4*120)+(4*24)+2\n= 578"
},
{
"id": 81,
"answerIndex": 1,
"answers": ["N", "O", "P", "Q"],
"question": "Which letter is such that the difference of its integer-code with the integer-code of T is the same as that between the integer-codes of N and S?",
"solution": "N = 14\nS = 19\n\nS-N = 5\n\nT = 20\n20-5 = 15\n\nO = 15"
},
{
"id": 82,
"answerIndex": 1,
"answers": ["2/35", "9/35", "6/35", "1/35"],
"question": "The probability that a man will be alive in 35 years is 3/5 and the probability that his wife will be alive is 3/7. Find the probability that after 35 years, both will be alive.",
"solution": "P(both will be alive)\n= (3/5)*(3/7)\n= 9/35"
},
{
"id": 83,
"answerIndex": 0,
"answers": ["97/120", "87/120", "53/120", "120/297"],
"question": "The probability that a student will pass in Mathematics is 3/5 and the probability that he will pass in English is 1/3. If the probability that he will pass in both Mathematics and English is 1/8, what is the probability that he will pass in at least one subject?",
"solution": "P(Passing in atleast one subject)\n= (3/5) + (1/3) - (1/8)\n= 97/120"
},
{
"id": 84,
"answerIndex": 1,
"answers": ["5", "7", "9", "8"],
"question": "N persons stand on the circumference of a circle at distinct points. Each possible pair of persons, not standing next to each other, sings a two-minute song one pair after the other. If the total time taken for singing is 28 minutes, what is N?",
"solution": "Each person forms a pair with every other person except the two near him.\n\nSo, each person pairs with (N-3) persons.\n\nTotal number of pairs = N(N-3)\n\nBut each pair has been counted twice.\n\nSo, the number of pairs\n= N(N-3)/2\n\n2*N(N-3)/2 = 28\n\nN(N-3) = 28\n\n7*4 = 28\n\nN = 7"
},
{
"id": 85,
"answerIndex": 2,
"answers": ["0.52", "0.753", "0.42", "None of these"],
"question": "The game 'Chunk-a-Luck' is played at carnivals in some parts of Europe. Its rules are as follows: You pick a number from 1 to 6 and the operator rolls three dice. If the number you picked comes up on all three dice, the operator pays you Rs. 3 ; If it comes up on two dice, you are paid Rs. 2; And it comes up on just one dice, you are paid Rs. 1. Only if the number you picked does not come up at all, you pay the operator Rs. 1. The probability that you will win money playing in this game is",
"solution": "We lose money if the number we choose doesn't appear on all 3 dice.\n\nP(losing the game)\n= (5/6)*(5/6)*(5/6)\n= 125/216\n\nP(winning money)\n= 1 - (125/216)\n= 91/216\n= 0.42"
}
]
}