Vous êtes sur la page 1sur 11

Problems, Problem Spaces

and Search
To build a system to solve a
problem
1. Define the problem precisely
2. Analyse the problem
3. Isolate and represent the task knowledge
that is necessary to solve the problem
4. Choose the best problem-solving
techniques and apply it to the particular
problem.
Defining the problem as State
Space Search
• The state space representation forms the basis of most
of the AI methods.
• Its structure corresponds to the structure of problem
solving in two important ways:
– It allows for a formal definition of a problem as the need to
convert some given situation into some desired situation using a
set of permissible operations.
– It permits us to define the process of solving a particular problem
as a combination of known techniques (each represented as a
rule defining a single step in the space) and search, the general
technique of exploring the space to try to find some path from
current state to a goal state.
– Search is a very important process in the solution of hard
problems for which no more direct techniques are available.
Example: Playing Chess
• To build a program that could “play chess”, we
could first have to specify the starting position of
the chess board, the rules that define the legal
moves, and the board positions that represent a
win for one side or the other.
• In addition, we must make explicit the previously
implicit goal of not only playing the legal game of
chess but also winning the game, if possible,
Playing chess
• The starting position can be described as an 8by 8 array where each
position contains a symbol for appropriate piece.
• We can define as our goal the check mate position.
• The legal moves provide the way of getting from initial state to a goal state.
• They can be described easily as a set of rules consisting of two parts:
– A left side that serves as a pattern to be matched against the current board
position.
– And a right side that describes the change to be made to reflect the move
• However, this approach leads to large number of rules 10120 board
positions !!
• Using so many rules poses problems such as:
– No person could ever supply a complete set of such rules.
– No program could easily handle all those rules. Just storing so many rules poses
serious difficulties.
Defining chess problem as State
Space search
• We need to write the rules describing the legal
moves in as general a way as possible.
• For example:
– White pawn at Square( file e, rank 2) AND
Square( File e, rank 3) is empty AND Square(file e,
rank 4) is empty, then move the pawn from
Square( file e, rank 2) to Square( file e, rank 4).
• In general, the more succintly we can describe
the rules we need, the less work we will have to
do to provide them and more efficient the
program.
Water Jug Problem
• The state space for this problem can be
described as the set of ordered pairs of
integers (x,y) such that x = 0, 1,2, 3 or 4
and y = 0,1,2 or 3; x represents the
number of gallons of water in the 4-gallon
jug and y represents the quantity of water
in 3-gallon jug
• The start state is (0,0)
• The goal state is (2,n)
Production rules for Water Jug
Problem
• The operators to be used to solve the
problem can be described as follows:

Sl No Current state Next State Descritpion


1 (x,y) if x < 4 (4,y) Fill the 4 gallon jug

2 (x,y) if y <3 (x,3) Fill the 3 gallon jug

3 (x,y) if x > 0 (x-d, y) Pour some water out of the 4


gallon jug

4 (x,y) if y > 0 (x, y-d) Pour some water out of the 3-


gallon jug

5 (x,y) if x>0 (0, y) Empty the 4 gallon jug

6 (x,y) if y >0 (x,0) Empty the 3 gallon jug on the


ground

7 (x,y) if x+y >= 4 and y >0 (4, y-(4-x)) Pour water from the 3 –
gallon jug into the 4 –gallon
jug until the 4-gallon jug is full
Production rules
8 (x, y) if x+y >= 3 and x>0 (x-(3-y), 3) Pour water from the 4-gallon jug
into the 3-gallon jug until the 3-
gallon jug is full
9 (x, y) if x+y <=4 and y>0 (x+y, 0) Pour all the water from the 3-
gallon jug into the 4-gallon jug

10 (x, y) if x+y <= 3 and x>0 (0, x+y) Pour all the water from the 4-
gallon jug into the 3-gallon jug

11 (0,2) (2,0) Pour the 2 gallons from 3-gallon


jug into the 4-gallon jug

12 (2,y) (0,y) Empty the 2 gallons in the 4-


gallon jug on the ground
To solve the water jug problem
• Required a control structure that
loops through a simple cycle in
which some rule whose left side
matches the current state is Gallons in the Gallons in the Rule applied
chosen, the appropriate change to 4-gallon jug 3-gallon jug
the state is made as described in 0 0 2
the corresponding right side, and
the resulting state is checked to
0 3 9
see if it corresponds to goal state.
3 0 2
• One solution to the water jug
problem 3 3 7
• Shortest such sequence will have
a impact on the choice of 4 2 5 or 12
appropriate mechanism to guide
the search for solution. 0 2 9 0r 11

2 0
Formal Description of the problem
1. Define a state space that contains all the
possible configurations of the relevant objects.
2. Specify one or more states within that space
that describe possible situations from which
the problem solving process may start ( initial
state)
3. Specify one or more states that would be
acceptable as solutions to the problem. ( goal
states)
4. Specify a set of rules that describe the actions
( operations) available.

Vous aimerez peut-être aussi