top of page
Chapter 03:
Problem-solving
ARTIFICIAL INTELLIGENCE MODERN APPROACH
Visual Summaries
Core Terminology
Master key academic terminology through active recall and spaced repetition concepts.
atomic
Problem-solving agents use _____ representations, where the internal structure of world states is not visible to the algorithm.
Goal formulation
In the context of problem-solving agents, what is the first step in organizing behavior?
Problem formulation.
What is the process of deciding which actions and states to consider given a goal called?
path cost function
A problem is formally defined by five components: the initial state, actions, transition model, goal test, and _____.
ACTIONS(s)
What function returns the set of actions reachable from a given state s?
c(s,a,s′)
How is the step cost of taking action a in state s to reach state s′ denoted?
Chapter Quiz
Which component of a well-defined problem specifies the state that results from taking a specific action in a specific state?
A search algorithm that 'forgets its history' and fails to account for redundant paths is likely to suffer from which of the following?
Which search strategy expands the node n with the lowest path cost g(n) and is optimal for any step-cost function?
Why is Iterative Deepening Search often preferred over Breadth-First Search for large state spaces?
The evaluation function for A* search is defined as f(n)=g(n)+h(n). What does the f(n) value represent?
Answers: B, A, C, D, C
bottom of page







.png)