<figure class="post-ascii-fig">
<img src="/img/lines-of-communication.png" alt="Complete graphs showing how communication lines multiply as a team grows, from 3 people and 3 lines up to 14 people and 91 lines" style="width:100%;height:auto;border-radius:6px;display:block;margin:0 auto;" />
<figcaption class="post-ascii__caption">fig 0. <code>links = n choose 2</code> the lines explode while the headcount only ticks up.</figcaption>
</figure>

When you add a person to a team, the org chart shows plus one. One more brain, one more pair of hands, a little more capacity. That is the number everyone counts.

Here is the number nobody counts. That same hire also adds a fresh set of communication lines, and it quietly lowers how hard everyone already on the team pulls. Two costs, both invisible, both real. I learned to call it the tax on every hire.

## the lines

Look at the picture above. Three people have three lines between them. Add one person and you have six. By ten people you already have forty five lines, and by fourteen you have ninety one. You hired one person. You bought a pile of new conversations, and every one of them has to stay in sync.

There is a clean formula behind that explosion. Every pair of teammates needs one line between them, so the number of lines in a team of n is simply the number of pairs you can make from n people. Mathematicians write that "n choose 2", and for any team of real size it climbs like the square of the headcount.

<pre class="ascii-art" aria-label="The number of communication lines in a team of n people equals n choose 2, which grows roughly like n squared over two">
<span class="muted">how many lines a team of n needs:</span>

   <span class="accent">lines(n) = n choose 2  ≈  n² / 2</span>

     n  │  lines
     3  │      3
     5  │     10
    10  │     45
    14  │     91
    50  │  <span class="warn">1,225</span>
</pre>

Read the last two rows. Going from five people to fifty grows the team by ten times. It grows the lines by more than a hundred. That gap is the square talking, and it is why the overhead sneaks up on you: the people add up, but the wiring multiplies.

This is the old idea behind Brooks's Law. The work that a team has to do to coordinate itself does not grow with the team. It grows with the square of the team. Double the people and you roughly quadruple the wiring. At some point you are paying more in keeping everyone aligned than you are getting back in output. ([Lines of communication and team size](https://www.liminalarc.co/2018/02/lines-of-communication-team-size-applying-brooks-law/) walks through the math.)

The trap is that the capacity feels linear and the overhead feels free, so you keep adding. The lines pile up silently in the background until one day the team that used to move fast spends every morning in standups and every afternoon in threads.

## the dilution

The second cost is older and stranger. In the 1910s an engineer named Maximilien Ringelmann had people pull on a rope, alone and in groups, and measured the force. He expected the group to pull as hard as the sum of its members. It never did. The bigger the group, the less each person pulled.

<pre class="ascii-art" aria-label="The Ringelmann rope pulling effect: as more people pull the same rope, each one pulls with less effort">
the same rope, more hands:

1 person    [#]==========  O
                           /|\     <span class="muted">each pulls</span>  <span class="warn">100%</span>
                           / \

2 people    [#]==========  O  O
                           /|\/|\   <span class="muted">each pulls</span>   <span class="warn">93%</span>
                           / \/ \

3 people    [#]==========  O  O  O
                           /|\/|\/|\   <span class="muted">each pulls</span>   <span class="warn">85%</span>
                           / \/ \/ \

8 people    [#]==========  O  O  O  O  O  O  O  O
                           /|\/|\/|\/|\/|\/|\/|\/|\   <span class="muted">each pulls</span>   <span class="warn">49%</span>
                           / \/ \/ \/ \/ \/ \/ \/ \
</pre>

We call it social loafing now. When effort blurs into the group, people ease off without ever deciding to. Not because they are lazy, but because their slack stops being visible, and visible slack is what keeps most of us honest. By eight people on the rope, each person is giving about half of what they would give alone. ([The Ringelmann effect](https://www.sortlist.com/blog/ringelmann-effect/) has the full study.)

Put the two costs on one picture and you get this. Potential output is what you would get if every new person added their full share. Actual output is what you really get once coordination and dilution take their cut. The gap between them has a name.

<figure class="post-chart">
<svg viewBox="0 0 720 320" role="img" aria-labelledby="lossT lossD">
<title id="lossT">Performance against group size</title>
<desc id="lossD">Potential output rises in a straight line as the group grows. Actual output rises then flattens. The widening gap between them is process loss.</desc>
<line class="gridline" x1="70" y1="216" x2="600" y2="216" />
<line class="gridline" x1="70" y1="156" x2="600" y2="156" />
<line class="gridline" x1="70" y1="96" x2="600" y2="96" />
<line class="gridline" x1="70" y1="36" x2="600" y2="36" />
<line class="axis" x1="70" y1="276" x2="600" y2="276" />
<line class="axis" x1="70" y1="36" x2="70" y2="276" />
<path class="area-synthetic" d="M 70 276 L 136.25 246 L 202.5 216 L 268.75 186 L 335 156 L 401.25 126 L 467.5 96 L 533.75 66 L 600 36 L 600 155.4 L 533.75 156 L 467.5 158.4 L 401.25 165 L 335 177 L 268.75 195 L 202.5 217.5 L 136.25 246 L 70 276 Z" />
<path class="series-human" style="stroke-dasharray:6 5" d="M 70 276 L 600 36" />
<path class="series-human" d="M 70 276 L 136.25 246 L 202.5 217.5 L 268.75 195 L 335 177 L 401.25 165 L 467.5 158.4 L 533.75 156 L 600 155.4" />
<text x="606" y="40" class="label-callout">Potential</text>
<text x="606" y="159" class="label-callout">Actual</text>
<text x="455" y="118" class="label-callout" text-anchor="middle">Process loss</text>
<text x="300" y="248" text-anchor="middle">Obtained output</text>
<text x="70" y="292" text-anchor="middle">0</text>
<text x="202.5" y="292" text-anchor="middle">2</text>
<text x="335" y="292" text-anchor="middle">4</text>
<text x="467.5" y="292" text-anchor="middle">6</text>
<text x="600" y="292" text-anchor="middle">8</text>
<text x="62" y="280" text-anchor="end">0</text>
<text x="62" y="220" text-anchor="end">200</text>
<text x="62" y="160" text-anchor="end">400</text>
<text x="62" y="100" text-anchor="end">600</text>
<text x="62" y="40" text-anchor="end">800</text>
<text x="335" y="312" text-anchor="middle" class="label-callout">Size of group</text>
<text x="22" y="156" transform="rotate(-90 22 156)" text-anchor="middle">Performance</text>
</svg>
<figcaption class="post-chart__caption">fig 2. The straight line is what you paid for. The curve is what you got. The shaded wedge is process loss. After Ringelmann's rope pulling study.</figcaption>
</figure>

## what this meant at Rodati

At Rodati I was young and I believed in the linear story. When something was slow, I added people. More hands on the rope, more output, obviously.

It did not work like that. Past a certain size the team got slower, not faster. Mornings filled with syncing. Decisions that one person used to make in an afternoon now needed three people in a room and a follow up thread. Everyone was busy and the work crawled. I thought I had a motivation problem or a talent problem. I had a math problem. I was paying the tax and blaming the people.

## the rule

Headcount is not free capacity. Every hire buys you output and charges you coordination plus dilution, and the bill grows with the square of the team.

So add a person only when the work they will add clearly beats the tax they will add. When a team starts to drag, the first move is rarely more people. It is fewer lines: split the group into small pods that each own an outcome, so the rope stays short and everyone can still see who is pulling.

Small teams are not a constraint you tolerate. They are the cheapest performance you will ever buy.

And this matters more now than it ever has. AI keeps lifting the ceiling on what a single person can produce, so a small team with the right tools can ship what used to take a whole department. You capture the output of the big group without paying its communication tax or its dilution. The smaller and sharper the team, the more that leverage compounds.