Q3Principles of Artificial Intelligence
Question
2 marks
State the difference between blind search and heuristic search.
Answer
Blind search explores the state space without domain-specific knowledge, whereas heuristic search uses problem-specific knowledge to find solutions efficiently.
Blind search (or uninformed search) explores the state space without domain-specific knowledge about the goal, relying only on the problem definition. Heuristic search (or informed search) uses problem-specific knowledge, such as an evaluation function, to guide the search and find solutions more efficiently.