Back to the 2021 paper

Module 2: Data Mining and Association Rule Mining

20212m

Discuss whether or not each of the following activities is a data mining task. Give briefly proper justification :

(i) Dividing the customers of a company according to their profitability
(ii) Monitoring and predicting failures in a hydropower plant

Worked SolutionAI Assisted

Is it a Data Mining Task?

(i) Dividing customers according to profitability

Yes, this is a data mining task.
This is a clustering/segmentation problem — grouping customers into meaningful segments based on profitability-related attributes (purchase frequency, spend, margin) without predefined labels. Discovering these natural groupings from raw transaction/customer data is a core data mining functionality (unsupervised clustering).

(ii) Monitoring and predicting failures in a hydropower plant

Yes, this is a data mining task (specifically the "predicting" part).

  • Monitoring alone (just observing sensor readings in real time) is not mining — it's plain data collection/surveillance.
  • Predicting failures, however, requires learning patterns from historical sensor/operational data to forecast future failures — this is a classification/prediction task, a core data mining functionality.

So both qualify as data mining tasks, but for different reasons: (i) because segmentation without labels = clustering, and (ii) because predicting future failures from historical patterns = predictive modeling — not because "monitoring" itself is mining.

Similar questions