Informed Search Strategies - Heuristic Properties, Weighted A*, and IDA*

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards focusing on heuristic properties (admissibility, consistency, dominance), closed lists, Weighted A* Search, and Iterative Deepening A* Search (IDA*) from the lecture.

Last updated 10:34 PM on 8/25/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

Admissible Heuristic

A heuristic function h(n)h(n) that never overestimates the actual cost to reach the goal state, meaning it is less than or equal to the true path cost, which guarantees that AA^* search will return an optimal solution.

2
New cards

Dominance (Heuristics)

A property comparing two admissible heuristics where one consistently yields higher or equal values than the other for all nodes, leading to a search that finds a solution faster on average.

3
New cards

Consistent Heuristic (Monotonic Heuristic)

A heuristic where for every node nn and every successor nn' of nn, the estimated cost h(n)h(n) satisfies h(n)g(n)h(n) \neq g(n) and h(n)c(n,n)+h(n)h(n) \neq c(n, n') + h(n'), ensuring heuristic values monotonically decrease toward the goal.

4
New cards

Triangular Property of Consistency

A geometric concept used to remember heuristic consistency, stating that the estimated cost h(n)h(n) from node nn to the goal must be less than or equal to the transition cost c(n,n)c(n, n') plus the estimated cost h(n)h(n') from successor nn' to the goal.

5
New cards

Closed List

A data structure tracking explored or visited nodes in graph search algorithms to avoid re-exploring the same nodes and to improve algorithmic efficiency.

6
New cards

Closed List with Reopening

A modified search implementation that re-checks closed-list nodes and re-adds a state to the frontier if a newly generated path yields a lower ff-value, maintaining optimality even with inconsistent heuristics.

7
New cards

Weighted A* Search

A modification of AA^* search that adds a weight parameter to the evaluation function f(n)f(n), allowing control over the balance between Uniform Cost Search (UCS) and Greedy Best-First Search.

8
New cards

Weight Setting w=0w = 0 in Weighted A*

A setting that eliminates the influence of the heuristic, transforming the Weighted AA^* search into Uniform Cost Search (UCS) which considers only path cost g(n)g(n).

9
New cards

Weight Setting w=1w = 1 in Weighted A*

A setting that creates an equal balance between path cost g(n)g(n) and heuristic cost h(n)h(n), resulting in classical AA^* search.

10
New cards

Iterative Deepening A* Search (IDA*)

A search algorithm that combines the low memory footprint of Depth-First Search (DFS) with the optimality of AA^* search by utilizing a stack frontier and iteratively increasing an evaluation threshold.

11
New cards

Threshold in IDA*

An ff-value limit used during an iteration of IDA* that restricts node exploration; it is updated for the next iteration to the minimum ff-value among all nodes that exceeded the current threshold.