Develop a formal proof of correctness for alpha–beta pruning. To do
this, consider the situation shown in
Figure alpha-beta-proof-figure. The question is whether
to prune node
-
Mode
$n_1$ takes on the minimum value among its children:$n_1 = \min(n_2,n_{{21}},\ldots,n_{2b_2})$ . Find a similar expression for$n_2$ and hence an expression for$n_1$ in terms of$n_j$ . -
Let
$l_i$ be the minimum (or maximum) value of the nodes to the left of node$n_i$ at depth $i$, whose minimax value is already known. Similarly, let$r_i$ be the minimum (or maximum) value of the unexplored nodes to the right of$n_i$ at depth$i$ . Rewrite your expression for$n_1$ in terms of the$l_i$ and$r_i$ values. -
Now reformulate the expression to show that in order to affect
$n_1$ ,$n_j$ must not exceed a certain bound derived from the$l_i$ values. -
Repeat the process for the case where
$n_j$ is a min-node.