Module 4 - Classical Search Flashcards

1
Q

What is the difference between a certain and uncertain world in AI?

A

A certain world is one where the outcome of each action is known and predictable. It is rule-governed and deterministic. In contrast, an uncertain world is one where actions have multiple possible consequences and are stochastic (not precisely predictable).

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

How does AI define problem-solving?

A

AI defines problem-solving as finding the best possible solution given constraints. However, we may not always find the best solution, but we can find the best strategy within given cost constraints.

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

What are the two core components of AI problem-solving?

A

AI problem-solving requires:

  1. Representation – The AI must first structure the problem in a way that it can be processed.
  2. Search – The AI explores the possible solutions systematically
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why is representation crucial in AI problem-solving?

A

The way a problem is represented determines the difficulty of solving it. A simple representation often leads to simpler solutions, while a complex representation may make a problem more computationally expensive.

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

How does representation affect neural network training?

A

When training a neural network, searching for the lowest error point in a landscape is crucial. A better representation of the problem can lead to faster convergence and improved accuracy.

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

What is state-space search in AI?

A

A state-space search involves defining:

  1. State Representation – What are the different possible conditions of the problem?
  2. Operators – What actions can be taken to move between states?
  3. Search Strategy – How does the AI explore the possible states to find the goal?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an example of problem-solving using state-space search?

A

The 8-puzzle problem is a good example. The AI represents the board as a state space, defines valid moves, and then searches for the shortest sequence of moves to reach the goal.

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

What is the difference between random search and structured search?

A
  1. Random search: Tries moves blindly, often leading to inefficiency and infinite loops.
  2. Structured search: Uses algorithms to find the most efficient path.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How does Breadth-First Search (BFS) work?

A

BFS explores all possible paths level by level, ensuring that the shortest path to the goal is found.

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

What is the difference between the open list and closed list in BFS?

A
  1. Open list: Keeps track of states that need to be explored.
  2. Closed list: Stores already explored states to avoid redundant checks.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the advantages and disadvantages of BFS?

A

Advantage: Guarantees finding the shortest path to the solution.

Disadvantage: Memory-intensive because it explores many possibilities

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

How does Depth-First Search (DFS) differ from BFS?

A

DFS goes deeper into the search tree first, rather than exploring all nodes at the same level. It can use less memory than BFS but may get stuck in deep searches.

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

When is DFS preferable over BFS?

A

DFS is preferable when:

  • The solution path is long.
  • The branching factor is low (fewer choices at each step).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is combinatorial explosion in AI?

A

Combinatorial explosion occurs when the number of possible solutions grows exponentially, making it impossible to explore all options in a reasonable time.

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

How does AI combat combinatorial explosion?

A
  • Heuristics – Using rules of thumb to guide the search.
  • Pruning – Eliminating paths that are unlikely to lead to the goal.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is an example of combinatorial explosion in AI?

A

The game of chess. The number of possible moves grows exponentially, requiring strategies like heuristics and pruning to manage complexity.

17
Q

What is Best-First Search?

A

Best-First Search prioritizes exploring the most promising paths first based on an evaluation function.

18
Q

How does a heuristic function work in AI search?

A

A heuristic function estimates how close a state is to the goal. The lower the evaluation value, the more promising the state.

19
Q

What is an example of a heuristic in problem-solving?

A

In the 8-puzzle, one heuristic is counting how many tiles are out of place compared to the goal state.

20
Q

What is the advantage of Best-First Search over BFS and DFS?

A

Best-First Search can drastically reduce the number of explored states by focusing on the most promising paths.

21
Q

What was IBM’s Deep Blue, and why was it significant?

A

Deep Blue was the first AI to defeat a world chess champion (Garry Kasparov) in 1997.

22
Q

What made Deep Blue powerful?

A
  • It evaluated 200 million positions per second.
  • Used heuristic functions and opening/endgame databases.
23
Q

How does AI evaluate board positions in chess?

A

AI uses an evaluation function that assigns a score based on piece values, positioning, and strategy.

24
Q

What role do game databases play in chess AI?

A

AI can memorize optimal moves from previous games, reducing the need for real-time calculations.

25
Q

What are the two main challenges in AI problem-solving?

A

Complexity (too many possible solutions) and uncertainty (not knowing all the consequences).

26
Q

How does AI solve problems despite complexity?

A

By using efficient search algorithms and heuristics to reduce the number of possible solutions.

27
Q

How does AI handle uncertainty?

A

AI estimates probabilities and uses learning models to improve decision-making in unknown environments.