This document compares and evaluates several algorithms for mining association rules from frequent itemsets in transactional databases. It summarizes the Apriori, FP-Growth, Closure and MaxClosure algorithms, and experimentally compares their performance based on factors like number of transactions, minimum support, and execution time. The paper finds that algorithms like FP-Growth that avoid candidate generation perform better than Apriori, which generates a large number of candidate itemsets and requires multiple database scans.