The document summarizes the Apriori algorithm for finding frequent itemsets in a transactional database. It provides an example applying the Apriori algorithm to a sample dataset with a minimum support of 2. The example performs 4 steps: 1) Finding the candidate itemsets C1 and frequent itemsets L1, 2) Generating candidate itemsets C2 and frequent itemsets L2, 3) Generating candidate itemsets C3 and frequent itemsets L3, 4) Determining the final frequent itemset is {A,C,D} with a support of 2.