I'm new to data mining and have been going through constraint-based query mining lately. I came across the concept of succinctness which basically details a constraint as succinct, if we can generate all the candidate item-sets precisely, based on an itemset satisfying the constraint.
A more formal definition is :
Given A1, the set of items satisfying a succinctness constraint C, then any set S satisfying C is based on A1 , i.e., S contains a subset belonging to A1
Example, min(S.Price) <= v
is succinct
But, sum(S.Price) >= v
is not succinct
I understand why the former is a succinct constraint => as all the candidates can be generated by ensuring that one of the subsets satisfies that constraint. But I fail to understand why the latter is not a succinct constraint. Any pointers on this would be helpful !