Question: This problem exercises the basic concepts of game playing, using tic - tac - toe as an example. We define x n as the number

This problem exercises the basic concepts of game playing, using tic-tac-toe as an example. We
define xn as the number of rows, columns, or diagonals with exactly nx's and no O's. Similarly On is
the number of rows, columns, or diagonals with just n O's. The utility function assigns +1 to any
terminal position with x3=1 and -1 to any with O3=1. All other terminal positions have utility
0. For nonterminal positions, we use a linear evaluation function defined as:
Eval(s)=3x2(s)+x1(s)-(3O2((s))+O1((s)))
For instance, the example state given below would have Eval =2 because there are two diagonals
and one row with 1x and no O's, and only one row with 1O and no X's.
a) Show the whole game tree starting from an empty board down to depth 2(i.e., one x and one O
on the board), taking symmetry into account. Assume that x goes first.
b) Mark on your tree the evaluations of all the positions at depth 2.
c) Using the minimax algorithm, mark on your tree the backed-up values for the positions at depths
1 and 0?, and use those values to choose the best starting move.
 This problem exercises the basic concepts of game playing, using tic-tac-toe

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!