This semester, I took a course on randomized algorithms and I thought it was pretty cool. In fact, I'm going to start doing research with the professor next semester on randomized data structures. But first, I want to show a pretty simple example of a randomized algorithm to demonstrate why they may be useful.
Consider the following game. There is a fixed value . I'm going to pick two distinct values in the set , call them . In envelope , I will place dollars (). You are going to choose one of the envelopes at random and learn how much money is in it. You will then make a choice: stick with this envelope or switch to the other one. You win the game if you end up with the envelope that has the higher amount of money.
Now notice that when you are given the choice between the two envelopes, you know nothing about the values in the envelopes besides they are in the set . This means either envelope has a chance of winning. Despite this, we can show that there exists a randomized algorithm that would allow you to win of the time.
Naive Deterministic Approach: One way you may consider solving this problem is to pick a random envelope, and switch envelopes if the value you got was lower then . However, this may not work as I could actually be your worst enemy and I could adversarially choose inputs that would make you lose of the time, which is exactly what we do not want.
Randomized Algorithm: This is why we introduce randomization. Let . Our strategy will be to pick envelope , and if , we switch envelopes. We can show that this will always win you of the time.
Proof: We can assume WLOG that . Now there are two possible ways to win:
As such, the probability of winning is just
Importantly, . As such, we have that the probability of winning is
This yields the desired result.
This is a simple example of a randomized algorithm, but I thought it was pretty cool. Hopefully you thought it was as well.