Parrondo's Paradox
11–20 of 53 posts
Re: Parrondo's Paradox
#12This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
1) Hitting both nails and screws with a hammer is a losing game.
2) Screwing both nails and screws with a screwdriver is a losing game.
Paradox alert! If you hammer the nails and screw the screws you've transformed two losing games into a winning game!
Re: Parrondo's Paradox
#13This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
Re: Parrondo's Paradox
#14This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
Yeah, this seems pointless. Here's an example of the paradox: 1) Hitting both nails and screws with a hammer is a losing game. 2) Screwing both nails and screws with a screwdriver is a losing game. Paradox alert! If you hammer the nails and screw the screws you've transformed two losing games into a winning game!
Re: Parrondo's Paradox
#15This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
Re: Parrondo's Paradox
#16This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
Re: Parrondo's Paradox
#17I don't understand why it is obvious that for any games A and B, composition C has any relation to A or B.
Re: Parrondo's Paradox
#18Re: Parrondo's Paradox
#19This seems like such a pointless semantic flex to me... In this case has the game not become Game A + Game B ? It's just a larger game with a distinct winning strategy because the ruleset is expanded right? What's the significance?
Start with: 1 large fixed size data structure and 1 cache Algorithm A: Checks as it is iterating whether the cache is full. If not, it generates the cache data (SLOW) but can then iterate over the entire data structure quickly. First time it does this is a loss, but 2nd pass through the data structure leads to an overall win. Algorithm B: Prefers an empty cache. If cache is full it will delete it. It can iterate over the entire data structure fairly quickly. Each time is considered a win.
Now you have a program with many different features and everyone knows that it doesn't really matter if you use Algorithm A or B because they are both programmed to work safely together and if you test a feature using one of the algorithms it will be fast either way, so it's left up to personal preference. The fun begins when the full program starts alternating from algorithm A to B.
Re: Parrondo's Paradox
#20It seems like if you have 2 games A and B, the second you start playing them together you’ve effectively created a new game C, which is a game of A and B combined.