The document summarizes informed search strategies, including best-first search algorithms like greedy search, uniform-cost search (UCS), and A* search. It provides an overview of how heuristics can be used to guide search toward more promising solutions. A* search is described as using both path cost g(n) and heuristic estimate h(n) to determine the best order of node expansion. The properties of A*, including admissibility, completeness, and optimality, are proven assuming h(n) underestimates cost to the goal. Performance depends on heuristic accuracy, with exponential growth possible if errors are large.