• Keine Ergebnisse gefunden

7. State-Space Search: Examples of State Spaces

N/A
N/A
Protected

Academic year: 2022

Aktie "7. State-Space Search: Examples of State Spaces"

Copied!
5
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Foundations of Artificial Intelligence

7. State-Space Search: Examples of State Spaces

Malte Helmert

University of Basel

March 10, 2021

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 1 / 20

Foundations of Artificial Intelligence

March 10, 2021 — 7. State-Space Search: Examples of State Spaces

7.1 Blocks World

7.2 Route Planning in Romania 7.3 Missionaries and Cannibals 7.4 Summary

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 2 / 20

State-Space Search: Overview

Chapter overview: state-space search I 5.–7. Foundations

I 5. State Spaces

I 6. Representation of State Spaces I 7. Examples of State Spaces I 8.–12. Basic Algorithms I 13.–19. Heuristic Algorithms

Three Examples

In this chapter we introduce three state spaces that we will use as illustrating examples:

1

blocks world

2

route planning in Romania

3

missionaries and cannibals

(2)

7. State-Space Search: Examples of State Spaces Blocks World

7.1 Blocks World

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 5 / 20

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World

Blocks world is a traditional example problem in AI.

Setting: Blocks World

I Colored blocks lie on a table.

I They can be stacked into towers, moving one block at a time.

I Our task is to create a given goal configuration.

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 6 / 20

7. State-Space Search: Examples of State Spaces Blocks World

Example: Blocks World with Three Blocks

(action names omitted for readability;

initial state and goal can be arbitrary)

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World: Formal Definition

state space hS, A, cost, T , s 0 , S ? i for blocks world with n blocks State Space Blocks World

states S :

partitions of {1, 2, . . . , n} into nonempty ordered lists example n = 3:

I {h1, 2, 3i}, {h1, 3, 2i}, {h2, 1, 3i}, {h2, 3, 1i}, {h3, 1, 2i}, {h3, 2, 1i}

I {h1, 2i, h3i}, {h2, 1i, h3i}, {h1, 3i, h2i}, {h3, 1i, h2i}, {h2, 3i, h1i}, {h3, 2i, h1i}

I {h1i, h2i, h3i}

(3)

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World: Formal Definition

state space hS , A, cost, T , s 0 , S ? i for blocks world with n blocks State Space Blocks World

actions A:

I {move b,b

0

| b, b 0 ∈ {1, . . . , n} with b 6= b 0 } I move block b onto block b

0

.

I both must be uppermost blocks in their towers I {totable b | b ∈ {1, . . . , n}}

I move block b onto the table ( forming a new tower) I must be uppermost block in its tower

action costs cost:

cost(a) = 1 for all actions a

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 9 / 20

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World: Formal Definition

state space hS, A, cost, T , s 0 , S ? i for blocks world with n blocks State Space Blocks World

transitions:

example for a = move 2,3 : transition s − → a s 0 exists iff

I s = {hb 1 , . . . , b k , 2i, hc 1 , . . . , c m , 3i} ∪ X and I if k > 0: s 0 = {hb 1 , . . . , b k i, hc 1 , . . . , c m , 3, 2i} ∪ X I if k = 0: s 0 = {hc 1 , . . . , c m , 3, 2i} ∪ X

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 10 / 20

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World: Formal Definition

state space hS , A, cost, T , s 0 , S ? i for blocks world with n blocks State Space Blocks World

initial state s 0 and goal states S ? : one possible definition for n = 3:

I s 0 = {h1, 3i, h2i}

I S ? = {{h3, 2, 1i}}

(in general arbitrarily choosable)

7. State-Space Search: Examples of State Spaces Blocks World

Blocks World: Properties

blocks states

1 1

2 3

3 13

4 73

5 501

6 4051

7 37633

8 394353 9 4596553

blocks states

10 58941091

11 824073141

12 12470162233

13 202976401213

14 3535017524403 15 65573803186921 16 1290434218669921 17 26846616451246353 18 588633468315403843

I For every given initial and goal state with n blocks,

simple algorithms find a solution in time O(n). (How?)

I Finding optimal solutions is NP-complete

(4)

7. State-Space Search: Examples of State Spaces Route Planning in Romania

7.2 Route Planning in Romania

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 13 / 20

7. State-Space Search: Examples of State Spaces Route Planning in Romania

Route Planning in Romania

Setting: Route Planning in Romania

We are on holiday in Romania and are currently located in Arad.

Our flight home leaves from Bucharest. How to get there?

Giurgiu

Urziceni Hirsova

Eforie Neamt

Oradea

Zerind Arad

Timisoara Lugoj Mehadia Dobreta

Craiova Sibiu Fagaras

Pitesti

Vaslui Iasi

Rimnicu Vilcea

Bucharest 71

75

118

111 70 75

120 151 140

99 80

97

101 211

138

146 85

90

98 142 92 87

86

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 14 / 20

7. State-Space Search: Examples of State Spaces Route Planning in Romania

Romania Formally

State Space Route Planning in Romania

I states S : {arad, bucharest, craiova, . . . , zerind}

I actions A: move c,c

0

for any two cities c and c 0 connected by a single road segment

I action costs cost: see figure, e.g., cost(move iasi,vaslui ) = 92 I transitions: s − → a s 0 iff a = move s,s

0

I initial state: s 0 = arad

I goal states: S ? = {bucharest}

7. State-Space Search: Examples of State Spaces Missionaries and Cannibals

7.3 Missionaries and Cannibals

(5)

7. State-Space Search: Examples of State Spaces Missionaries and Cannibals

Missionaries and Cannibals

Setting: Missionaries and Cannibals I Six people must cross a river.

I Their rowing boat can carry one or two people across the river at a time (it is too small for three).

I Three people are missionaries, three are cannibals.

I Missionaries may never stay with a majority of cannibals.

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 17 / 20

7. State-Space Search: Examples of State Spaces Missionaries and Cannibals

Missionaries and Cannibals Formally

State Space Missionaries and Cannibals states S :

triples of numbers hm, c , bi ∈ {0, 1, 2, 3} × {0, 1, 2, 3} × {0, 1}:

I number of missionaries m, I cannibals c and

I boats b

on the left river bank initial state: s 0 = h3, 3, 1i goal: S ? = {h0, 0, 0i, h0, 0, 1i}

actions, action costs, transitions: ?

M. Helmert (University of Basel) Foundations of Artificial Intelligence March 10, 2021 18 / 20

7. State-Space Search: Examples of State Spaces Summary

7.4 Summary

7. State-Space Search: Examples of State Spaces Summary

Summary

illustrating examples for state spaces:

I blocks world:

I family of tasks where n blocks on a table must be rearranged I traditional example problem in AI

I number of states explodes quickly as n grows I route planning in Romania:

I small example of explicitly representable state space I missionaries and cannibals:

I traditional brain teaser with small state space

(32 states, of which many unreachable)

Referenzen

ÄHNLICHE DOKUMENTE

I recognize duplicates: when a state is reached on multiple paths, only keep one search node I search nodes correspond 1:1 to reachable states I search tree bounded, as number of

I breadth-first search ( this chapter) I uniform cost search ( Chapter 11) I depth-first search ( Chapter 12) I depth-limited search ( Chapter 12) I iterative deepening search (

uniform cost search: expand nodes in order of ascending path costs. I usually as a

Theorem (time complextive of iterative deepening DFS) Let b be the branching factor and d be the minimal solution length of the given state space. State-Space Search: Depth-first

Helmert (University of Basel) Foundations of Artificial Intelligence March 24, 2021 2 / 16.. State-Space

In IDDFS, we grow the limit from the smallest limit that gives a non-empty search tree (0) by 1 at a time. This usually leads to exponential growth of

I In IDDFS, we grow the limit from the smallest limit that gives a non-empty search tree (0) by 1 at a time. I This usually leads to exponential growth of

I f -bound lemma: The minimum f value in the open list at the beginning of each A ∗ iteration is a lower bound on the optimal solution cost. Helmert (University of Basel) Foundations