Prisoner’s Dilemma
On September 3, 1949, a weather plane was flying over Japan. It detected traces of radioactive isotopes. These elements decay quickly, which means they had been created recently. The conclusion was obvious: the Soviet Union had detonated its first nuclear bomb.
Since the last world war, nuclear power was limited to only one country. With this new development, a rivalry started. This meant there was a chance to cooperate and prevent an arms race before it began. There was also the option to double down, build more weapons, and try to stay ahead.
You know how the story went. These countries chose the second path. Both sides acted rationally and both sides lost. Over the decades they built tens of thousands of warheads, spent enormous amounts of money, and lived with the constant risk of destruction. Each would have been better off if they had trusted the other and chosen cooperation.

This is the heart of what we now call the Prisoner’s Dilemma. It shows how hard cooperation can be, how expensive mistrust becomes, and how acting in our own immediate interest can leave everyone worse off.
And here is why this matters to you. The same pattern plays out in your career, in your team, and in your day-to-day work. Every time you collaborate, you face the same question. Will you cooperate or will you hold back? Will you share knowledge or keep it to yourself? Will you build trust or protect only your short-term advantage?
Your answer to these questions shapes your reputation. Over time, it shapes how far you go.
Win, Lose or Cooperate
Now, let’s take a look at the problem. Imagine sitting across the table from another player. A banker places a chest of gold coins between you. The rules are simple. You each choose whether to cooperate or to defect.
- If you both cooperate, you each walk away with three coins.
- If you cooperate but the other person defects, they collect five coins and you leave empty-handed.
- If you both defect, you each get a single coin.
The math seems clear. Defecting gives you more coins whether the other person cooperates or not. But when you both make the same choice, you leave the table with less than you could have earned together.
Let’s replace those coins with something more valuable and real. In life, those coins are reputation, trust, and future opportunities.
- If you both cooperate, you each build credibility and open the door to work together again.
- If you cooperate but the other person defects, they get the credit, the visibility, and perhaps the promotion while your work goes unnoticed.
- If you both defect, you keep something for yourself, but the project suffers and trust evaporates.
The logic still feels persuasive. Protecting yourself seems safer. But when you both choose to do so, the outcome is smaller, weaker, and less successful than what it could have been. You leave coins on the table. Over time, that missing value compounds into lost opportunities, slower career growth, and relationships that never fully form.
This is the trap of the Prisoner’s Dilemma. Acting in self-interest feels kind of clever at the moment. Nonetheless, when everyone does it, everyone loses. The work suffers. Trust erodes. Both careers slow down.
The people who thrive in the long run are the ones who find a way to cooperate, build trust, and create value together.
Careers Are a Repeated Game
If this game happened only once, protecting yourself might be the smartest move. You would defect, keep the credit, guard your ideas, and walk away with a short-term win.
Nevertheless, your career is not a single round. You will see the same colleagues again. You will work with them on other projects, join other teams, or meet them years later in a different company. Your reputation travels faster than you do.
In the early 1980s, political scientist Robert Axelrod set out to discover the best way to play the Prisoner’s Dilemma when it is repeated over and over again. He invited programmers to submit computer programs, each representing a strategy. Every strategy would play against every other strategy for two hundred rounds, simulating a long-term relationship.
The winner was surprisingly simple. It was a program called Tit for Tat. It always started by cooperating, then mirroring whatever the other player did on the previous round. If the other player cooperated, it kept cooperating. If the other player defected, it retaliated once and then returned to cooperation if the opponent did the same.
class TitForTat {
constructor() {
this.opponentHistory = [];
}
// Call this each round, passing the opponent's last move ("C" or "D")
nextMove(opponentMove) {
if (opponentMove) {
this.opponentHistory.push(opponentMove);
}
if (this.opponentHistory.length === 0) {
// First round: cooperate
return "C";
}
// Mirror the opponent's last move
return this.opponentHistory[this.opponentHistory.length - 1];
}
}
In his studies, Axelrod found that the best-performing strategies shared four qualities. They were nice, meaning they were willing to cooperate first. They were clear, making their behavior predictable and trustworthy. They were retaliatory, which meant they defended themselves against exploitation. And they were forgiving, which allowed them to reset after conflict and resume cooperation.
This is exactly how the most successful professionals behave. They give before they expect something in return. They are consistent, which makes them easy to trust. They set boundaries when needed but do not hold grudges. And because of this, they build strong networks that reward them again and again over time.
Generosity as a Career Strategy
When you see your career as a repeated game, the winning strategy becomes clearer. You are not trying to win a single round. You are trying to build a pattern of play that makes others want to cooperate with you again and again.
Robert Axelrod’s tournament showed that the best strategies were not aggressive or tricky. In fact, aggressive ones never have made it to the top. The winners were the ones that started with cooperation, responded firmly to defection, forgave quickly, and kept their moves easy to read.
Translated into the workplace, this is what generosity looks like.
Generosity is sharing credit when a project succeeds. It is mentoring someone who is one step behind you. It is introducing people in your network who could help each other. It is being transparent about what you know instead of hoarding information to maintain an advantage.
Generosity does not mean being naive or letting others take advantage of you. The best strategies retaliate when someone defects. If someone repeatedly claims your ideas as their own, you must set boundaries. But the moment they go back to good behavior, you let the past go and return to cooperation.
The people who do this consistently compound their reputations. Their generosity attracts opportunities because others trust them and want them on their team. Over time, they gather more “coins” than the people who tried to grab every coin for themselves.
Generosity is a good game strategy.
Playing Long-Term
The most important insight from the Prisoner’s Dilemma is that cooperation pays when the game is played over and over. What looks like a small sacrifice today often turns into a much bigger reward tomorrow.
Think about the coins again. In a single round, defecting might give you five coins instead of three. It feels like a win. But if the other player remembers your move and refuses to cooperate next time, you will spend the rest of the game trading single coins back and forth. The short-term gain costs you far more in the long run.
In real life, this is how trust works. When you act generously, when you share credit, when you help without expecting an immediate return, you signal that you are safe to cooperate with. Other people respond by opening doors for you, inviting you into bigger projects, and advocating for you when you are not in the room.
This is why the most successful people often seem surprisingly generous. They are playing a different game. They are not just trying to win today’s round. They are investing in a reputation that will pay off for years.
Small acts of cooperation compound. A single generous choice might not seem to matter, but dozens of them build a career full of trust, allies, and opportunities that no one can take away.
Key Takeaways
The Prisoner’s Dilemma is more than a thought experiment. It is the game you are playing every day in your career. The choices you make shape whether others want to cooperate with you again and again. Here are the principles that turn this game into a winning strategy:
- Start by cooperating. Be the first to offer help, share an idea, or give credit. This sets the tone and invites others to do the same.
- Be clear and consistent. Make your actions easy to read. When people know what to expect from you, they trust you.
- Defend yourself when needed. If someone repeatedly takes advantage of you, set boundaries. Protecting your reputation is part of the game.
- Forgive quickly. Once the issue is resolved, reset the relationship and return to cooperation. Holding grudges only prolongs mutual defection.
- Think in decades, not days. Each round builds your reputation. Generosity compounds into opportunities that short-term wins can never match.
When you play the long game, you stop seeing every interaction as a battle to win and start seeing it as a chance to grow the pot of coins together. The real winners are not the ones who grab the most coins in a single round. They are the ones who leave the table with everyone richer including themselves.