Back to the 2022 paper

Module 2: Data Mining and Association Rule Mining

20222m

The computational complexity of Apriori algorithm increases with the _______ in the bound of support threshold.

(i) increase
(ii) decrease
(iii) Does not depend
(iv) None of the above

Worked SolutionAI Assisted

Answer: (ii) decrease

Apriori's runtime is dominated by candidate generation and database scans. As min_sup decreases, more itemsets clear the support bar and become "frequent" — so:

  • More frequent itemsets survive at every level (L1, L2, L3, ...).
  • More candidate itemsets get generated at each join step.
  • More database scans/counting passes are needed to evaluate them.
min_sup HIGH  → few frequent itemsets → fast (small search space)
min_sup LOW   → many frequent itemsets → slow (huge search space)

So computational complexity increases as the support threshold decreases — a lower bar lets far more candidates through, exploding the search space combinatorially.

Similar questions