I know the upper bound for the size of the game tree is 9! = 362,880 in a 3X3 Tic Tac Toe. After deducted the invalid case and the rotation and reflection, only 26,830 possible games are left. So complexity of decision trees in 3X3 Tic Tac Toe is 5 which is the number of digit of the leaf nodes (26,830). Am I conclusion right?
If so, how can i calculate a decision tree complexity of 4X4 Tic Tac Toe without drawing out a full decision tree?
Sorry for my dump question