N-Circular Tic-Tac-Toe

The game of 10-circular tic-tac-toe is played on the board below with 10 cells. Two players take turns placing naughts and crosses on the cells. The player who first places three consecutive symbols on the board wins.

Assuming optimal play, who has a winning strategy?


This problem was inspired by João Pedro Afonso 's solution to a different tic-tac-toe problem .
Whoever plays first Whoever plays second Nobody, the game is a draw

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

David Vreken
Jun 23, 2018

On the second player's first turn, he must place his symbol directly beside the first player's symbol, or else the first player can place two of his symbols in a row with empty spaces on either side and win. The optimal strategy for the second player on his first turn is to place his symbol directly beside the first player's symbol to avoid this from happening.

The optimal strategy for the first player is to remain in control of the game by placing his symbol in spots where he is able to place two of his symbols in a row, so that the second player must always respond by placing his symbol directly beside it.

Played with these two strategies, the game alternates with the first player attempting to get two in a row, and the second player blocking the attempt, until there is no more room left on the board to get three in a row for either player, after which the game will end in a tie.

The first player can use higher level tactics, such as playing 4 steps away from his symbol with empty space between. Then if the second player blocks on the wrong side, the first player can play in the middle leaving two ways to win.

But the result is still a draw with best play.

Steven Perkins - 2 years, 11 months ago

Log in to reply

But the result is still a draw with best play.

How do you show this?

Agnishom Chattopadhyay - 2 years, 11 months ago

Log in to reply

I don't have a succinct rational. It's easier to be a critic of someone's solution than to come up with a better one, right?

In fact, I originally thought I had a winning strategy, but after getting the question wrong found out that I'd given the first player an extra move in my imagining. Then it became "obvious" that there was no good way to force a win.

I believe this is true for any size circular path if the second player plays adjacent to the first player, preferring the side where the next taken space is the first player's token if that situation exists.

I don't claim this is a proof, but I think it's the reasonable path forward. And perhaps the only strategy that guarantees a draw for the second player.

Steven Perkins - 2 years, 11 months ago

Log in to reply

@Steven Perkins I also think so. I am not very sure of how to properly reason about this game, but thank you for your input anyway :)

Agnishom Chattopadhyay - 2 years, 11 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...