Suppose that two integers a and b are uniformly at random selected from S = {-10, -9, …, 9, 10}. Find the probability that max {0, a} = min {0, b}
Try to solve this problem yourself before moving on to the solution below
.
.
.
.
.
.
Solution
Note that a <= 0, as min{0, b} <= 0. Furthermore, we also see that b >= 0, as max{0, a} >= 0. Therefore, we just need to find the probability a <= 0 and b >= 0. There are (21^2 = 441) total ways a and b can be selected. Of those, we have 11 choices for each a and b, as a <= 0 and b >= 0, so our probability is
.
.
😃 Over to you: Were you able to solve this?
👉 If you liked this post, don’t forget to leave a like ❤️. It helps more people discover this newsletter on Substack and tells us that you appreciate solving these weekly questions. The button is located towards the bottom of this email.
👉 If you love reading this newsletter, feel free to share it with friends!
Great one
Easy to solve if you create a number line and divide it into 2 groups (<0 and >=0) and assign A & B to one of these groups. Slightly lengthy way though