RTUComputer ScienceYr 2023 · Sem 62023

Q6Principles of Artificial Intelligence

Question

2 marks

Explain the concept of Alpha-Beta pruning.

Answer

Alpha-Beta pruning is an optimization technique for the minimax algorithm that reduces the number of evaluated nodes by pruning branches that cannot influence the decision.

Alpha-Beta pruning is an optimization technique for the minimax algorithm that reduces the number of nodes evaluated by pruning branches that cannot possibly influence the final decision. This allows the search to go deeper into the game tree within the same time limit.

Back to Paper