Explain this informed Search in Grid Type Environment---**Title:** Informed Search in Grid-Type Environment **General Information:** We say an algorithm is **informed** if it relies on problem-specific knowledge that helps us decide which node to expand next. One approach for making a search informed is to add a **heuristic function** — h(n) — that estimates cost-to-go: from any node n to the current goal. **Chart/Diagram Description: (A) 4-connected gridmap** * **Type:** Grid Diagram * **Main Elements:** A 3x3 grid represents a gridmap. * A black circular point (labeled 'Robot' above) is located in the center cell (row 2, column 2). * Arrows indicate connections from the center cell to its four immediate neighbors: * An arrow points upwards to the cell (row 1, column 2), labeled '1'. * An arrow points leftwards to the cell (row 2, column 1), labeled '2'. * An arrow points downwards to the cell (row 3, column 2), labeled '3'. * An arrow points rightwards to the cell (row 2, column 3), labeled '4'. * The diagram is annotated as a "4-connected gridmap". **Table Content:** A 5x8 grid table showing numerical values, a circled number, and a star symbol. | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 3 | |---|---|---|---|---|---|---|---| | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 2 | | 6 | 5 | (4) | 3 | 2 | 1 | ☆ | 1 | | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 2 | | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 3 | * **Annotation:** The number '4' in the third row, third column is enclosed in a blue circle. A star symbol (☆) is in the third row, seventh column. **Mathematical Formulas/Heuristic Functions:** * **Manhattan Distance:** * Description: Use Manhattan distance from current state to the goal as heuristic function * Formula: `h_M(n) = Δx + Δy` * **Straight-line distance (Euclidean distance):** * Description: Straight-line distance (Euclidean distance): * Formula: `h_SLD = √Δx² + Δy²` **Question:** Which h(n) is more informed for this agent? **Page Number:** 4

视频信息