I am trying to create a very simple mathematical "game" that involves:
- Two players take turns and are competing against each other (Player 1 and Player 2)
- Each player can either perform "Action A" or "Action B"
- There is some element of probability
I would like this game to illustrate the following point: There are some situations in which "Action A" is on average more likely to benefit the player, and some situations where "Action B" is on average more likely to benefit the player. Ideally, we should be able to identify the "conditions" (e.g. Player 1 is some situation and Player 2 is in some other situation) in which it is more favorable to use "Action A" vs. "Action B" using probability reasoning as well as via simulation (e.g. randomly play the game again and again and based on the results of the simulation, calculate the conditional probability of winning the game using "Action A" vs. "Action B" at different points in time). Ideally, I would like to able to code the simulation in some programming language such as "R".
I would like to make this game as simple as possible to explain. I tried doing some research to see if such a "game" might already exist - the closest thing that I could find to such a problem was a "game" called the Monty Hall Problem (https://en.wikipedia.org/wiki/Monty_Hall_problem).
In the Monty Hall game, there is a prize behind one of three doors - a player chooses one of these doors and another door from the remaining two doors is opened (obviously not the door containing the prize). The player now has the option of "switching his choice of door" (Action A) or "keeping his choice of door" (Action B). (Note: We can call the person choosing the doors "Player 1" and the "host of the gameshow" as "Player 2")
However, using the Laws of Probability, it can be shown that "performing Action A will consistently lead to better odds of wining the prize compared to performing Action B". This is because initially, Player 1 has a 1/3 chance of winning - when one of the doors is opened and the player has the chance of switching: its as if he is restarting the game with only 2 doors and switching doors (Action A) will now give him a 1/2 chance of winning whereas keeping the same door (Action B) still only results in a 1/3 chance of winning. Since 1/2 > 1/3, it is obviously better to stick with the option having the 1/2 chance of winning.
This being said, I would like to either find/create a "game" in which sometimes it is more advantageous to "switch doors", but other times it is more advantageous to "keep the same door".
Can someone please help me create/find a simple game in which some conditions result in "Action A" being more favorable and other conditions result in "Action B" being more favorable - and these "conditions" can be both determined theoretically (e.g. making a "probability tree" (https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Probability_tree_diagram.svg/1200px-Probability_tree_diagram.svg.png) and via simulation results (e.g. conditional probabilities and contingency tables)?
Thanks!
Note: Perhaps the "Prisoner's Dilemma Game" (https://en.wikipedia.org/wiki/Prisoner%27s_dilemma) can be adapted for this purpose in which some "conditions" result in it being more favorable to "cooperate" vs. other "conditions" result in it being more favorable "not to cooperate"? With my very limited knowledge and understanding of Game Theory, it seems that in the Prisoner's Dilemma Game there exists a Nash Equilibrium, meaning that some action is always and consistently more favorable compared to all other actions. I think the situation I am interested in is characterized by "Mixed Strategies" (https://en.wikipedia.org/wiki/Strategy_(game_theory)#Pure_and_mixed_strategies), meaning that no single action can be said to consistently be better than other actions at all times.
