Chapter3 Solving Problems by Searching and Constraint Satisfaction Problem
Chapter3 Solving Problems by Searching and Constraint Satisfaction Problem
By RINESH S
Contents
• Problem Solving by Searching
• Problem Solving Agents
• Problem Formulation
• Search Strategies
• Avoiding Repeated States
• Constraint Satisfaction Search
Solving Problems by Searching
• Reflex agent is simple
– base their actions on
– a direct mapping from states to actions
– but cannot work well in environments
• which this mapping would be too large to store
• and would take too long to learn
• Hence, goal-based agent is used
Problem-solving agent
• Problem-solving agent
– A kind of goal-based agent
– It solves problem by
• finding sequences of actions that lead to desirable
states (goals)
– To solve a problem,
• the first step is the goal formulation, based on the
current situation
Goal formulation
• The goal is formulated
– as a set of world states, in which the goal is
satisfied
• Reaching from initial state goal state
– Actions are required
• Actions are the operators
– causing transitions between world states
– Actions should be abstract enough at a certain
degree, instead of very detailed
– E.g., turn left VS turn left 30 degree, etc.
Problem formulation
• The process of deciding
– what actions and states to consider
• E.g., driving Amman Zarqa
– in-between states and actions defined
– States: Some places in Amman & Zarqa
– Actions: Turn left, Turn right, go straight,
accelerate & brake, etc.
Search Strategies
problem
• Start
• Find out all (n -1)! Possible solutions, where n
is the total number of cities. Determine the
minimum cost by finding out the cost of each
of these (n -1)! solutions. Finally, keep the one
with the minimum cost.
• end
Problem-Solving Agents
• agents whose task is to solve a particular problem
(steps)
– goal formulation
• what is the goal state
• what are important characteristics of the goal state
• how does the agent know that it has reached the goal
• are there several possible goal states
– are they equal or are some more preferable
– problem formulation
• what are the possible states of the world relevant for solving the
problem
• what information is accessible to the agent
• how can the agent progress from state to state
Example
From our Example
1. Formulate Goal
- Be In Amman
2. Formulate Problem
- States : Cities
- actions : Drive Between Cities
3. Find Solution
• Formulate goal:
• be in Bucharest
–
• Formulate problem:
– states: various cities
– actions: drive between cities
• Find solution:
• sequence of cities, e.g., Arad, Sibiu, Fagaras, Bucharest
–
Example: Romania
Single-state problem formulation
A problem is defined by four items:
initial state e.g., "at Arad"
1. actions or successor function S(x) = set of action–state pairs
– e.g., S(Arad) = {<Arad Zerind, Zerind>, … }
Path Cost:
Each step costs 1
The 8-puzzle
The 8-puzzle
• States:
– a state description specifies the location of each of the
eight tiles and blank in one of the nine squares
• Initial State:
– Any state in state space
• Successor function:
– the blank moves Left, Right, Up, or Down
• Goal test:
– current state matches the goal configuration
• Path cost:
– each step costs 1, so the path cost is just the length of
the path
The 8-queens
• There are two ways to formulate the
problem
• All of them have the common followings:
– Goal test: 8 queens on board, not attacking to
each other
– Path cost: zero
The 8-queens