This document provides an overview of problem solving agents and search algorithms covered in the CS 3491 - AI & ML course. The key topics covered include:
- Problem solving agents perceive their environment through sensors and act upon it through actuators. Common search algorithms like uninformed and heuristic search strategies are used.
- The problem solving process involves goal formulation, problem formulation, searching for a solution, and then executing the solution. The environment is assumed to be observable, discrete, known, and deterministic.
- State space refers to all reachable states from the initial state. Search algorithms take a problem as input and output an action sequence solution. Path cost assigns a numeric cost to each path. Common uninformed and informed
Related topics: