vote up 1 vote down star

Wouldn't it be closer to:

n * (n - 1) / 2

The above formula is the answer to this middle school Math-team problem:

"You have n people in a room and they all shake hands with everyone else. How many handshakes took place?"

Wouldn't this also apply to the number of people communicating within a software project?

Disclaimer

I haven't read the book (yet), but I've seen the n^2 formula referenced elsewhere.

flag

5  
Whoever thought this isn't programming related really needs to read the book. – T.E.D. Aug 7 at 14:32
Analyzing the n^2 relationships Brooks is talking about without having read the book is just talking out of your ... hat. Read the book. This is one chapter of it. It's a quick read and can be found in any well-stocked library. – clintp Aug 7 at 14:39
Thanks T.E.D! It may not have to do with code... but it DEFINITELY has to do with programming! Unless you're a freelancer all your life, never interacting with any other developers! – SkippyFire Aug 7 at 15:01
@clintp: I definitely plan to read this book, I just need to find the time! – SkippyFire Aug 7 at 15:01

7 Answers

vote up 11 vote down check

If you had read the book, you wouldn't have asked the question. Here's what it actually says:

If there are n workers on a project, there are (n^2-n)/2 interfaces across which there may be communication, and there are potentially almost 2^n teams within which coordination must occur.

For those playing the home game, this is in Chapter 7, under the heading Organization in the Large Programming Project.

So the answer is that you are right, but that's what the book says too.

link|flag
+1 for suggesting that he actually read the book – clintp Aug 7 at 14:40
vote up 10 vote down

You are correct. However, while I have not read this book myself, it sounds like they are attempting to give a growth order, not an exact number. n * (n-1) / 2 is a function that grows as O(n^2). See Big-O Notation.

link|flag
vote up 1 vote down

I think the difference is that shaking hands occurs once and counts for both people. Communicating with teammates can be initiated from either person, so you end up counting the paths twice, once for each initiator.

In my personal experience, there are certain people (who I've just decided to call UberCommunicators) that can increase the factor by another order of magnitude simply due to the inherent costs of communicating with them. They tend to be extremely verbose, unable to state a concise point, and generally difficult to keep on task. Getting a useful dialog requires repeated efforts over an extended period of time.

link|flag
vote up 10 vote down

The mythical man month refers to overall algorithmic efficiency, as measured by the behavior near infinity.

n*(n-1)/2 = O(n^2)

link|flag
I started to upvote this, but then I went and read the book. I turns out it gave the actual formula. – T.E.D. Aug 7 at 15:02
vote up -2 vote down

Well I would think of a handshake as one thing. The communication is bidirectional and blocking. Handshaking is bidirectional, but its cocurrent.

link|flag
vote up 0 vote down

I think you're overanalysing this. The mythical man month is not a computer book like Learn How to Program Ruby in 21 Days. It's a business book on how teams interact. As such, it treats people as people, not as machines. Which means that approximations and heuristics are the order of the day, not algorithms and precision.

Please (please, please, please) remember to treat your team mates as human beings and not as just another computer. It will make for a more pleasant work environment and a better project.

link|flag
vote up 0 vote down

I didn't remember exactly what the book says, so pulled my copy off the shelf. You may be happy to learn that in chapter 2 - which is also the essay which gave the book its name - Brooks actually does says that the number of communications paths is n(n - 1)/2, matching what you said. So, as others have said, I suspect that the n^2 "quote" is just a simplification along the lines of O(n) notation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.