Quiz Space

AI: Search Methods for Problem Solving · Quiz 2 · 16 Aug 2026 · May 2026 term

Question 1: SEARCH\ Consider a state space where each move is reversi…

Question 1

+2 marksWritten answer

SEARCH
Consider a state space where each move is reversible and has 6 states (S,A,B,C,D,G) with S as start and G as goal. The heuristic function is:

Wherever applicable use alphabetical order.
Branch-and-Bound (BnB) algorithm is in mid-flight, the search tree as of the current moment is shown in the figure, where each node displays state and g-value.

Answer the sub-questions based on the information provided.

Make the necessary node refinements to complete the search tree like how Branch-and-Bound algorithm would have done before halting. How many times does each state occur in the final search tree? Enter the counts for S,A,B,C,D,G in the text box.
Enter a comma separated list of integers. NO SPACES, TABS, DOTS, BRACKETS OR EXTRANEOUS CHARACTERS. Answers Case Sensitive : No

Show answer

Correct answer: 1,2,2,3,3,4

Video solution

The video solution to this question is being recorded and will play here. Until then, the answer key is above.

Question 1 of 13 in the IIT Madras BS AI: Search Methods for Problem Solving (AI Search Methods) Quiz 2 paper sat on 16 Aug 2026, in the May 2026 term (Ai: Search Methods For Problem Solving 16 Aug 26). It carries 2 marks.

More questions from this paper

  1. Q2SEARCH\ Consider a state space where each move is reversible and has 6 states (S,A,B,C,D,G) with S as start and G as go…
  2. Q3SEARCH\ Consider a state space where each move is reversible and has 6 states (S,A,B,C,D,G) with S as start and G as go…
  3. Q4Consider 6 cities A to F, how many tours are represented by the TSP BnB node (S_0, ~AB, ~AC, BE, ~DB, ~DA)? Infer the p…
  4. Q5The TSP BnB procedure will return the optimal tour .
  5. Q6Let N be the number of cities. For the purpose of analysis, construct a relaxed (version of TSP BnB) tree in the follow…
  6. Q7Consider the relaxed tree generated in the PREVIOUS question. If we prune all nodes that violate the tour condition, th…
  7. Q8Identify the horizon nodes pruned by beta-cuts. Enter their node labels in the text box.\ Enter a comma separated list …
  8. Q9Solve the game tree using SSS algorithm. Identify the SOLVED horizon nodes that are removed from the queue by the pruni…
  9. Q10What is the horizon effect? Give a concise and clear answer. Stay on point.\ NOTE: Your answer should not exceed 100 wo…
  10. Q11Can the Forward State Space Planning algorithm discussed in the lecture solve Sussman Anomaly?
  11. Q12Can the Goal Stack Planning algorithm discussed in the lecture solve Sussman Anomaly?
  12. Q13What is true about the Goal Stack Planning algorithm? (Note: a unit goal cannot be decomposed into subgoals.)