State Space Representation AI
State Space Representation AI
The state space is a conceptual structure that consists of all possible states of a system and the legal moves
from one state to another. In AI, problems are modeled as navigating through a space of possible
configurations (states) using actions (operators) to reach a desired goal. Example: In a chess game, each
3. Problem Formulation
Problems must be well-defined before solving. Define start state, actions, goal state, and cost metric.
Example: In 8-puzzle, the tiles' arrangement is the state, sliding is the action, and the goal is the correct tile
order.
a) Uninformed Search:
b) Informed Search:
Examples include:
6. Importance in AI
State space forms the basis of AI problem solving. It is used in planning, robotics, game playing, etc. Without