This document discusses informed search algorithms for artificial intelligence. It covers iterative deepening A* (IDA*), recursive best-first search (RBFS), and simplified memory bounded A* (SMA*). IDA* improves on A* by using iterative deepening with a cutoff value based on path cost rather than depth. RBFS replaces node path costs with the best child cost on backtracking. SMA* works like A* until memory is full, then drops the highest-cost node to expand new nodes without recomputing explored areas.