This document summarizes key concepts from Chapter 13 of the textbook "Database System Concepts". It discusses the basic steps in query processing: parsing and translation, optimization, and evaluation. It also describes various algorithms for common relational algebra operations like selection, sorting, and join. The goal of optimization is to choose the most efficient evaluation plan by estimating the cost of each plan using statistical information about operations and relations. Cost is typically estimated based on the number of disk accesses and seeks required.