1.
List the problems of Apriori algorithm with its possible solutions. Consider the following transaction dataset. What association rules can be found in this set, if the minimum support is 3 and the minimum confidence is 80%.
$\begin{array}{c|c} \text{Transaction_ID} & \text{Item_List} \\ \hline \text{T1} & \{K, A, D, B\} \\ \text{T2} & \{D, A, C, E, B\} \\ \text{T3} & \{C, A, B, E\} \\ \text{T4} & \{B, A, D\} \\ \end{array}$
[10]