Unit 2 MinMaxScaling With Alpha Beta Pruning
Unit 2 MinMaxScaling With Alpha Beta Pruning
• In this case,
Minimax Decision = MAX{MIN{3,5,10}, MIN{2,a,b},
MIN{2,7,3}}
= MAX{3,c,2} = 3
• How could we calculate the maximum with a
missing value? Here is the trick. MIN{2,a,b} would
certainly be less than or equal to 2, i.e., c<=2 and
hence MAX{3,c,2} has to be 3.