Artificial Intelligence Algorithms Question: Download Artificial Intelligence Algorithms PDF

The set of actions for a problem in a state space is formulated by a ___________.
a) Intermediate states
b) Initial state
c) Successor function, which takes current action and returns next immediate state
d) None of the mentioned

Tweet Share WhatsApp

Answer:

c) Successor function, which takes current action and returns next immediate state
Explanation:
The most common formulation for actions uses a successor function. Given a particular state x, SUCCESSOR-FN(x) returns a set of (action, successor) ordered pairs, where each action is one of the legal actions in state x and each successor is a state that can be reached from x by applying the action.

Download Artificial Intelligence Algorithms PDF Read All 57 Artificial Intelligence Algorithms Questions
Previous QuestionNext Question
A solution to a problem is a path from the initial state to a goal state. Solution quality is measured by the path cost function, and an optimal solution has the highest path cost among all solutions. State whether true or false.
a) True
b) False
A problem in a search space Is defined by:
a) Initial state
b) Goal test
c) Intermediate states
d) All of the above