23
Problem Solving by Searching Search Methods : informed (Heuristic) search

Problem Solving by Searching Search Methods : informed (Heuristic) search

  • Upload
    mandel

  • View
    34

  • Download
    1

Embed Size (px)

DESCRIPTION

Problem Solving by Searching Search Methods : informed (Heuristic) search. Traditional informed search strategies. Greedy Best first search “Always chooses the successor node with the best f value” where f(n) = h(n) - PowerPoint PPT Presentation

Citation preview

Page 1: Problem Solving by Searching Search Methods :  informed (Heuristic) search

Problem Solving by Searching

Search Methods : informed (Heuristic)

search

Page 2: Problem Solving by Searching Search Methods :  informed (Heuristic) search

2

Traditional informed search strategies

Greedy Best first search “Always chooses the successor node with the best f value”

where f(n) = h(n) We choose the one that is nearest to the final state among

all possible choices

A* search Best first search using an “admissible” heuristic function f

that takes into account the current cost g Always returns the optimal solution path

Page 3: Problem Solving by Searching Search Methods :  informed (Heuristic) search

Informed Search Strategies

Best First Search

Page 4: Problem Solving by Searching Search Methods :  informed (Heuristic) search

Informed Search Strategies

Greedy Searcheval-fn: f(n) = h(n)

Page 5: Problem Solving by Searching Search Methods :  informed (Heuristic) search

5

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 6: Problem Solving by Searching Search Methods :  informed (Heuristic) search

6

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 7: Problem Solving by Searching Search Methods :  informed (Heuristic) search

7

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 8: Problem Solving by Searching Search Methods :  informed (Heuristic) search

8

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 9: Problem Solving by Searching Search Methods :  informed (Heuristic) search

9

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 10: Problem Solving by Searching Search Methods :  informed (Heuristic) search

10

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 11: Problem Solving by Searching Search Methods :  informed (Heuristic) search

11

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 12: Problem Solving by Searching Search Methods :  informed (Heuristic) search

12

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 13: Problem Solving by Searching Search Methods :  informed (Heuristic) search

13

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 14: Problem Solving by Searching Search Methods :  informed (Heuristic) search

14

Greedy SearchA

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

dist(A-E-F-I) = 140 + 99 + 211 = 450

Page 15: Problem Solving by Searching Search Methods :  informed (Heuristic) search

15

Greedy Search: Tree Search

A

BC

E

F

I

99

211

GA

80

Start

Goal

75118

140 [374][329]

[253]

[193]

[366][178]

E[0][253]

Path cost(A-E-F-I) = 253 + 178 + 0 = 431

dist(A-E-F-I) = 140 + 99 + 211 = 450

Page 16: Problem Solving by Searching Search Methods :  informed (Heuristic) search

16

Greedy Search: Optimal ?A

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

dist(A-E-G-H-I) =140+80+97+101=418

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 17: Problem Solving by Searching Search Methods :  informed (Heuristic) search

17

Greedy Search: Complete ?

A

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

f(n) = h (n) = straight-line distance heuristic

State Heuristic: h(n)

A 366

B 374

** C 250

D 244

E 253

F 178

G 193

H 98

I 0

140

Page 18: Problem Solving by Searching Search Methods :  informed (Heuristic) search

18

Greedy Search: Time and Space Complexity ?

A

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

140

• Greedy search is not optimal.

• Greedy search is incomplete without systematic checking of repeated states.

• In the worst case, the Time and Space Complexity of Greedy Search are both O(bm)

Where b is the branching factor and m the maximum path length

Page 19: Problem Solving by Searching Search Methods :  informed (Heuristic) search

Informed Search Strategies

A* Search

eval-fn: f(n)=g(n)+h(n)

Page 20: Problem Solving by Searching Search Methods :  informed (Heuristic) search

20

A* (A Star) Greedy Search minimizes a heuristic h(n) which is an

estimated cost from a node n to the goal state. However, although greedy search can considerably cut the search time (efficient), it is neither optimal nor complete.

Uniform Cost Search minimizes the cost g(n) from the initial state to n. UCS is optimal and complete but not efficient.

New Strategy: Combine Greedy Search and UCS to get an efficient algorithm which is complete and optimal.

Page 21: Problem Solving by Searching Search Methods :  informed (Heuristic) search

21

A* (A Star) A* uses a heuristic function which

combines g(n) and h(n): f(n) = g(n) + h(n)

g(n) is the exact cost to reach node n from the initial state. Cost so far up to node n.

h(n) is an estimation of the remaining cost to reach the goal.

Page 22: Problem Solving by Searching Search Methods :  informed (Heuristic) search

22

A* (A Star)

n

g(n)

h(n)

f(n) = g(n)+h(n)

Page 23: Problem Solving by Searching Search Methods :  informed (Heuristic) search

23

A* Search

f(n) = g(n) + h (n)

g(n): is the exact cost to reach node n from the initial state.

State Heuristic: h(n)

A 366

B 374

C 329

D 244

E 253

F 178

G 193

H 98

I 0

A

B

D

C

E

F

I

99

211

G

H

80

Start

Goal

97

101

75118

111

140