Earlier quoted context omitted.
> what kind of useful information could be mined from a huge set of random-random games Whether there is a real advantage to start with white instead of black ?
Does it matter if there is an advantage to playing white vs black if both players are playing completely randomly? It should only really matter if there is an advantage when both players are playing optimally.
Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
101–110 of 131 posts
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#102Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#103Earlier quoted context omitted.
If it's impossible to checkmate then it's a stalemate. So if one side has one king and the other side one king (or even one king and a pawn, bishop, knight or rook) then it's a stalemate and the game ends. edit: forgot you can checkmate with just a king and a queen
You can easily checkmate with a king and a rook, it just has to be along an edge of the board. In rare circumstances you can checkmate with a king and a single bishop: http://www.chess.com/forum/view/more-puzzles/mate-with-one-b...
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#104Earlier quoted context omitted.
if completely random, you may prove that there is an empirical advantage to starting the game without taking in account the level of any player, because two players playing randomly should be equivalent. I'm not entirely sure, though.
Imagine a really simple game where there are only 2 moves: saying 1 and saying 0. The player who first says 1 wins. So of course the player who has the first turn will in practice always win, but when both players move randomly it's 50/50.
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#105Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#106Earlier quoted context omitted.
Imagine a really simple game where there are only 2 moves: saying 1 and saying 0. The player who first says 1 wins. So of course the player who has the first turn will in practice always win, but when both players move randomly it's 50/50.
Not true. Assuming both players move completely random (both choose either 1 or 0 with 50% probability each) and independently (past actions don't influence the current event) player 1 has a 2:1 advantage, i.e. he will win with probability 2/3. This is because player 1 can win after an even number of rounds (including 0) with 50% probability. So his total chance of winning is 1/2 * (1 + 1/4 + 1/16 + 1/64 + ...) = 1/2…
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#107Earlier quoted context omitted.
Does it matter if there is an advantage to playing white vs black if both players are playing completely randomly? It should only really matter if there is an advantage when both players are playing optimally.
One of the biggest innovations in computer Go has been the idea that you can evaluate a position in "monte carlo" fashion, by just playing a few random games from that position and seeing who wins. I don't know whether the same idea extends to Chess.
This has the randomness but without any bias or evaluation of effectiveness.
But really, Monte Carlo in Go can basically be thought of as a lazy, intelligent brute-forcing method.
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#108Out of curiosity, anybody know the relative strength of this vs. other real engines?
Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#109Re: Chess: Who will win in this riveting game of Math.random() vs. Math.random()?
#110Out of curiosity, anybody know the relative strength of this vs. other real engines?
Uh, zero?
I've heard several poker players saying that it's hard to play against novices, because they do nonsense.
Surly there is some game theory that says something about this. Anyone?