2 Fundamental ↑

No. 9 — Decomposition

Large and complex things should be broken down into smaller, more manageable things. This can be done progressively, and recursively, at multiple levels.

It’s best if the number of things in each group is somewhere in the range of 3 - 15, with 7 being a sweet spot. The human brain seems fairly good at dealing with sets of this size.

This idea can be applied to system functionality, to software architectures, to work statements (where it results in a work breakdown structure), and to project staffing.

Decomposition is particularly powerful when done in conjunction with Cohesion and Loose Coupling.

One famous example of decomposition was performed by the Wright Brothers when they broke down the problem of human flight into three separate domains: lift, control and propulsion.

Another common example of decomposition in modern web applications is evident in the popular MVC pattern, in which application logic is subdivided into three separate areas: model, view and controller.

In Agile, it is common to have three levels of requirements decomposition, starting with epics, proceeding to features, and then to user stories.

Note, however, that detailed decomposition of requirements need not be done initially, and can often be profitably deferred until a feature is a high enough priority to be approaching scheduled implementation into code.


Words from Others on this Topic

The bulleted list of requirements is by far the most cost-effective and beneficial approach. It is simple to create; it is simple to read, regardless of background; and, when stored in a spreadsheet, database, or requirements management tool and augmented with annotations, it has incredible benefits to project management.

Alan M. Davis, Just Enough Requirements Management: Where Software Development Meets Marketing, 2005


Next: Cohesion