Hello everyone,
I stumbled upon a video about the monty hall problem, which I found very well explained, and a lot of comments below the video that were against the conclusion that it is better to switch. To clarify, I wrote this small program that simulates the game and allows everyone to test it for themselves.
I got the following results:
+ Calculation Preferences +
Enter the amount of repetitions: 3000
Do you want to switch choice? [Y/N] y
+ Calculation Results +
Amount of repetitions: 3000
Correct choices: 2008
Wrong choices: 992
Winpercentage: 66.933333
and:
+ Calculation Preferences +
Enter the amount of repetitions: 3000
Do you want to switch choice? [Y/N] n
+ Calculation Results +
Amount of repetitions: 3000
Correct choices: 1013
Wrong choices: 1987
Winpercentage: 33.766667
So the conclusion is really self-explanatory :)
~G