Search Introduction Flashcards

1
Q

What are the different states that a problem can be in?

A

Start / Initial State
Goal State

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does the state space cover?

A

All possible outcomes at each state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are operators for?

A

They allow movement between states. i.e. a legal move on a chess board

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Do search algorithms store the whole tree?

A

Some do, some don’t.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the main steps of finding a solution to a problem?

A

Get current state
Check if that is the goal state
Use operators to expand to all next nodes
Pick which node to go to using search techniques

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a no information search called?

A

Blind or uninformed searches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a search with information called?

A

Heuristic or informed search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the methods we use to evaluate search methods?

A

Time complexity
Space complexity
Optimality
Completeness

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is optimality?

A

Can it guarantee that the optimal solution will be found

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is completeness?

A

Will a solution be found (if there is one)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly