(a) B+C < 1/2
a <- sum((B+C) < 0.5)/100000
a
## [1] 0.12358
(b) BC < 1/2
b <-sum((B*C) < 0.5)/100000
b
## [1] 0.84609
(c) |B-C| < 1/2
c <-sum(abs(B-C) < 0.5)/100000
c
## [1] 0.74829
(d) max{B,C} < 1/2.
P(B < 1/2) = 0.5 and P(C < 1/2)=0.5, the probability that both are less than 1/2 is 0.5*0.5 = 0.25. So the only way the maximum of B and C are not greater than 0.5 is if both are less than 0.5, which is the compliment of both being less than 0.5, or 1??? 0.25 = 0.75.
(e) ) min{B,C} < 1/2
For the minimum of B or C to be less than 1/2, both B and C must be less than 0.5. Because the probability that P(B < 1/2) = 0.5 and P(C < 1/2) = 0.5, the probability that both are less than 1/2 is 0.5*0.5 = 0.25.