This document defines and describes three sorting algorithms: selection sort, exchange sort, and insertion sort. Selection sort works by selecting the first element and comparing it to all other elements, swapping elements to put the smallest in the top position, repeating this for each element. Exchange sort is similar to bubble sort, comparing adjacent elements and swapping them if out of order. Insertion sort works like sorting a hand of cards, removing one card at a time from the table and inserting it into the correct position in your hand.