-
Notifications
You must be signed in to change notification settings - Fork 0
/
12mar23balls.ts
62 lines (36 loc) · 2.64 KB
/
12mar23balls.ts
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
In the previous Kata we discussed the OR case.
We will now discuss the AND case, where rather than calculating the probablility for either of two (or more) possible results, we will calculate the probability of receiving all of the viewed outcomes.
For example, if we want to know the probability of receiving head OR tails in two tosses of a coin, as in the last Kata we add the two probabilities together. However if we want to know the probability of receiving head AND tails, in that order, we have to work differently.
The probability of an AND event is calculated by the following rule:
P(A ∩ B) = P(A | B) * P(B)
or
P(B ∩ A) = P(B | A) * P(A)
That is, the probability of A and B both occuring is equal to the probability of A given B occuring times the probability of B occuring or vice versa. If the events are independent, like in the case of tossing a coin, the probability of A occuring if B has occured is equal to the probability of A occuring by itself. In this case, the probability can be written as the below:
P(A ∩ B) = P(A) * P(B)
or
P(B ∩ A) = P(B) * P(A)
Applying to the heads and tails case:
P(H ∩ T) = 0.5 * 0.5
or
P(H ∩ T) = 0.5 * 0.5
The task:
You are given a random bag of 10 balls containing 4 colours. Red, Green, Yellow and Blue. You will also be given a sequence of 2 balls of any colour e.g. Green and Red or Yellow and Yellow.
You have to return the probability of pulling a ball at random out of the bag and it matching the first colour and then pulling a ball at random out of the bag and it matching the second colour.
You will be given a boolean value of true or false which indicates whether the balls that is taken out in the first draw is replaced in to the bag for the second draw. Hint: this will determine whether the events are independent or not.
You will receive two arrays and a boolean value. The first array contains the colours of the balls in the bag and the second contains the colour of the two balls you have to receive. As per above the final boolean value will indicate whether the balls are being replaced true or not false.
Do not mutate your inputs and do not round results.
e.g. [["y","r","g","b","b","y","r","g","r","r"],["r","b"],false]
function ballProbability([ balls, [ a, b ], replace ]) {
let ballLength = balls.length //int
, blue = balls.filter(ball => ball === a).length //int
, red = balls.filter(ball => ball === b).length; //int
let result = blue / ballLength; //ex: 2/5
if (!replace) {
if (a === b) {
red--;
}
ballLength--;
}
return Math.round(result * red / ballLength * 1000) / 1000;
//(int / int * int / int * 1000) / 1000
}