The document discusses problem-solving agents and uninformed search strategies. It introduces problem-solving agents as goal-based agents that try to find sequences of actions that lead to desirable goal states. It then discusses formulating problems by defining the initial state, actions, goal test, and cost function. Several examples of problems are provided, like the Romania tour problem. Uninformed search strategies like breadth-first search, uniform-cost search, and depth-first search are then introduced as strategies that use only the problem definition, not heuristics. Breadth-first search expands nodes in order of shallowest depth first, while depth-first search expands the deepest node in the frontier first.