+1 vote
in Artificial Intelligence by
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

This question was posed to me in exam.

I would like to ask this question from Problem Solving in chapter Problem Solving of Artificial Intelligence

Select the correct answer from above options

Interview Questions and Answers, Database Interview Questions and Answers for Freshers and Experience

1 Answer

0 votes
by
Right answer is (c) Successor function, which takes current action and returns next immediate state

The explanation is: 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.

Related questions

+1 vote
asked Oct 26, 2021 in Artificial Intelligence by DavidAnderson
+1 vote
asked Oct 26, 2021 in Artificial Intelligence by DavidAnderson
...