Suppose we have a maze game with 1 mouse and 4 cats in a 20*20 grid maze. Assume each agent in the maze can move N, E, S, W. What would your best guess be as to the number of children of each node in this massive game tree?
This is my best guess but I'm not sure, any thoughts?
4 possible mouse moves *
(4 directions) * (4! possible cat1 moves) *
(4 directions) * (4! possible cat2 moves) *
(4 directions) * (4! possible cat3 moves) *
(4 directions) * (4! possible cat4 moves)
= 339738624 children in 1 node