
MECE is a property of categorizations, classifications and hierarchies. We say, "this categorization is MECE", or "that hieararchy is not MECE" to indicate whether summing all values at a given level will sum to 100%.
For instance, if I had three pets, a dog, a budge, and a budgee, the following categorization of my pets is non-MECE:
Mammal | Lays Eggs | |
Dog | 1 | 0 |
Budgie | 0 | 1 |
Platypus | 1 | 1 |
Total | 2 | 2 |
In contrast, the following alternative categorization is MECE:
Mammal | Bird | |
Dog | 1 | 0 |
Budgie | 0 | 1 |
Platypus | 1 | 0 |
Total | 2 | 1 |

In practice, non-MECE categorization appear more often that one might think. Specifically, when using multiple, separate flag-attributes as in the tables above. In contrast, when we use a single column or attribute to categorize items, the categorization will typically be MECE, because each field in that column can only have one specific value.

No comments:
Post a Comment