retagged by
1,633 views
0 votes
0 votes

Consider the following two sentences:

  1. The planning graph data structure can be used to give a better heuristic for a planning problem
  2. Dropping negative effects from every action schema in a planning problem results in a relaxed problem

Which of the following is correct with respect to the above sentences?

  1. Both sentence a and sentence b are false
  2. Both sentence a and sentence b are true
  3. Sentence a is true but sentence b is false
  4. Sentence a is false but sentence b is true
retagged by

2 Answers

0 votes
0 votes

a. "The planning graph data structure can be used to give a better heuristic for a planning problem" - This sentence is generally true. Planning graphs are used in heuristic search algorithms for planning problems to estimate the distance to the goal state.

b. "Dropping negative effects from every action schema in a planning problem results in a relaxed problem" - This sentence is true. In the context of planning problems, creating a relaxed problem involves removing negative effects from action schemas, leading to a simplified version of the original problem.

Therefore, the correct answer is:

Both sentence a and sentence b are true.

Related questions

0 votes
0 votes
2 answers
1