This document discusses algorithms for order statistics and selection problems. It begins by defining order statistics as the ith smallest element of a set, with the minimum being the 1st order statistic and maximum being the nth. It then discusses algorithms for finding the minimum and maximum of a set in linear time. It introduces the selection problem of finding the element that is larger than exactly i-1 other elements and describes algorithms for solving it in expected and worst-case linear time through partitioning around a pivot element.