Chapter 30 Exercises

How to use these exercises: Work through the parts in order. Part A builds recognition skills, Part B develops analysis, Part C applies concepts to your own domain, Part D requires synthesis across multiple ideas, Part E stretches into advanced territory, and Part M provides interleaved practice that mixes skills from all levels.

For self-study, aim to complete at least Parts A and B. For a course, your instructor will assign specific sections. For the Deep Dive path, do everything.


Part A: Pattern Recognition

These exercises develop the fundamental skill of recognizing debt patterns across domains.

A1. For each of the following scenarios, (i) identify what is being borrowed, (ii) identify what constitutes the interest, (iii) assess how the interest compounds, and (iv) identify what default would look like.

a) A city defers sewer maintenance for fifteen years to keep property taxes low. Minor leaks are patched but the underlying infrastructure is not replaced.

b) A medical resident works 80-hour weeks for three years, surviving on caffeine and five hours of sleep per night.

c) A farmer uses chemical fertilizers to boost crop yields year after year, without rotating crops or adding organic matter to the soil.

d) A manager avoids giving honest performance feedback to a struggling employee for two years, hoping the problems will resolve themselves.

e) A software team copies and pastes the same block of code into seventeen different files rather than writing a shared function.

f) A nation runs a budget deficit for twenty consecutive years, borrowing to fund current spending rather than investing in infrastructure or education.

g) A couple stops having date nights after their first child is born and never resumes the practice. Five years pass.

h) A student memorizes formulas for an exam without understanding the underlying concepts, then advances to the next course.

A2. Classify each of the following as (i) deliberate debt (consciously chosen for strategic reasons), (ii) accidental debt (accumulated through inattention), or (iii) unavoidable debt (inherent in the situation). Some may fit more than one category. Justify your classification.

a) A startup ships a minimum viable product with known bugs to test market demand before investing in full development.

b) An athlete trains through minor pain, deferring recovery to prepare for an upcoming competition.

c) A city built in a flood plain that periodically requires costly flood recovery.

d) A team inherits a legacy codebase written in an obsolete programming language.

e) A government borrows to fund emergency pandemic response.

f) A person avoids going to the dentist for three years because they are afraid of bad news.

g) A fishing community gradually increases catch size over decades as boats become more efficient, without noticing the declining fish population.

h) A manager deliberately understaffs a department to hit quarterly budget targets, knowing that employee burnout will increase turnover.

A3. For each of the six domains covered in the chapter (financial, technical, ecological, sleep, oxygen, social), identify the equivalent of a "minimum monthly payment" -- the smallest action that prevents immediate default without actually reducing the principal.

A4. Identify three real-world examples of jubilee (debt forgiveness or system reset) that are not mentioned in the chapter. For each, analyze whether the jubilee was effective in breaking the debt trap, and why or why not.

A5. The chapter argues that every system that can accumulate debt needs a jubilee mechanism. Identify a system that currently lacks a jubilee mechanism and propose one. What resistance would you expect to your proposal, and why?


Part B: Analysis

These exercises require deeper analysis of debt patterns.

B1. Debt Audit. Choose a system you know well (your organization, your codebase, your city, your personal health, a relationship). Conduct a debt audit:

a) List at least five distinct debts the system has accumulated. For each, specify: What was borrowed? When? Why?

b) For each debt, estimate the current interest rate -- is the debt stable, slowly compounding, or rapidly compounding?

c) For each debt, assess the distance to the threshold of unserviceability. How much more debt can the system absorb before reaching crisis?

d) For each debt, identify whether a jubilee mechanism exists. If not, what would one look like?

e) Rank the debts from most to least dangerous. What criteria did you use for ranking?

B2. Debt Trap Analysis. Choose one of the following debt traps and diagram the positive feedback loop:

a) A developing nation borrows from international lenders to fund infrastructure. The debt service payments consume an increasing share of government revenue, reducing spending on education and health, which reduces economic growth, which makes the debt harder to service, which requires more borrowing.

b) A software team accumulates technical debt, which slows development, which increases pressure to take shortcuts, which adds more technical debt.

c) A person develops chronic back pain due to poor posture (physical debt). The pain makes exercise difficult, which weakens the muscles that support the spine, which worsens the posture, which increases the pain.

d) An ecosystem loses top predators due to overhunting. Without predators, herbivore populations explode, overgrazing degrades the vegetation, which reduces the food supply, which causes herbivore population crashes, which prevents predator recovery.

For your chosen scenario: (i) draw the feedback loop, (ii) identify the point at which the trap becomes self-sustaining, (iii) propose an intervention that could break the loop, and (iv) assess the cost and feasibility of that intervention.

B3. Compound Interest Across Domains. The chapter claims that interest compounds in all six domains of debt. For each domain, explain the mechanism of compounding -- not just that the debt grows but how and why each increment of debt makes the next increment worse. What structural feature enables compounding in each case?

B4. Reversibility Analysis. Rank the six domains of debt (financial, technical, ecological, sleep, oxygen, social) by reversibility -- how fully the system can recover after the debt is repaid. Justify your ranking. Which debts can be fully discharged, and which leave permanent damage?

B5. Compare the ancient Israelite Jubilee year with a modern Chapter 7 bankruptcy filing. What structural features do they share? How do they differ? What does the comparison tell us about how different societies have understood the problem of compounding debt?


Part C: Application

These exercises ask you to apply debt concepts to your own experience.

C1. Personal Debt Inventory. List every form of non-financial debt you are currently carrying. Include sleep debt, health debt, relationship debts, educational debts (gaps in knowledge that compound), and any domain-specific debts relevant to your work. For each:

a) Estimate the principal (how much have you borrowed?). b) Estimate the interest rate (how fast is it compounding?). c) Assess whether you are in a debt trap (is the debt preventing you from repaying it?). d) Design a realistic jubilee -- a specific plan for paying down the most dangerous debt.

C2. Professional Debt Recognition. In your professional domain, identify the most common forms of debt that practitioners accumulate but do not label as debt. Why are these not recognized as debt? What would change if practitioners started using the debt framework to discuss them?

C3. Debt Communication. Ward Cunningham coined "technical debt" specifically to help non-programmers understand a programming concept. Choose a form of debt from your own field that non-specialists struggle to understand. Craft a one-paragraph explanation using the debt framework that would make the concept accessible to someone with no background in your field.

C4. Reflect on a time when you personally experienced the debt trap -- when servicing an obligation prevented you from investing in the thing that would have resolved it. What eventually broke the loop? If it has not been broken, what would need to happen?


Part D: Synthesis

These exercises require integrating debt concepts with ideas from earlier chapters.

D1. Debt and Feedback Loops (Ch. 2). The chapter argues that debt is a specific form of positive feedback loop. But negative feedback loops (Chapter 2) can also interact with debt dynamics. Identify at least two negative feedback mechanisms that can slow or limit debt accumulation in each of the six domains. Under what conditions do these negative feedback mechanisms fail?

D2. Debt and Redundancy (Ch. 17). Chapter 17 argued that efficiency and redundancy exist in tension. How does debt accumulation relate to this tension? Is all debt a form of sacrificed redundancy? Are there forms of debt that arise even in systems with adequate redundancy? Develop a framework linking the efficiency-redundancy tradeoff to the debt-jubilee cycle.

D3. Debt and Cascading Failure (Ch. 18). Chapter 18 explored how failures in one part of a system can cascade to others. How does debt increase a system's vulnerability to cascading failure? Analyze a scenario (real or hypothetical) in which accumulated debt in one subsystem triggered a cascade that brought down the entire system.

D4. Debt and the Cobra Effect (Ch. 21). Section 30.8 notes that attempts to escape the debt trap can backfire. Design three scenarios (in three different domains) where a well-intentioned debt reduction effort makes the debt worse. What structural features of debt make it susceptible to cobra-effect dynamics?

D5. Debt and Dark Knowledge (Ch. 28). Is there such a thing as "knowledge debt" -- a deficit that accumulates when organizations defer investment in learning, training, and knowledge management? How does knowledge debt relate to the dark knowledge concept from Chapter 28? What happens when an organization's knowledge debt compounds to the point of unserviceability?


Part E: Advanced

These exercises push into territory beyond the chapter's explicit coverage.

E1. The Debt Paradox. Some economists argue that moderate debt is healthy -- that borrowing to invest can generate returns that exceed the cost of the debt, creating net value. This is true in finance. Is it true in the other five domains? Can you accumulate "healthy" technical debt, ecological debt, sleep debt, or social debt? Under what conditions is debt-taking rational, and how do you know when it has crossed from productive to destructive?

E2. Intergenerational Debt. Financial debt can be passed from one generation to the next. Can technical, ecological, sleep, or social debt be inherited? Analyze the concept of intergenerational debt across at least three domains. Who bears the cost of debt accumulated by a previous generation, and what are the ethical implications?

E3. Debt Denial. In every domain, there are stakeholders who benefit from denying that debt exists or minimizing its severity. Identify the structural incentives for debt denial in at least four domains. How does debt denial interact with the compounding dynamics of debt itself? Is denial a form of additional borrowing?

E4. The Limits of the Metaphor. Despite the chapter's argument that debt is a universal pattern rather than a borrowed metaphor, there are likely points where the structural analogy breaks down. Identify at least three ways in which ecological debt or sleep debt does not behave like financial debt. Do these disanalogies undermine the chapter's thesis, or do they reveal important structural differences between the domains?

E5. Designing a Debt-Resistant System. Using the four-part anatomy of debt (borrowing, compounding, threshold, default) and the concept of jubilee, design a system (in any domain) that is structurally resistant to dangerous debt accumulation. What features would it need? What tradeoffs would those features impose? Is it possible to design a system that cannot accumulate debt at all, or is debt an inevitable consequence of operating in a world with limited resources?


Part M: Mixed Practice (Interleaved)

These exercises deliberately mix concepts from the current chapter with concepts from Chapters 26-28 for spaced review.

M1. The independent discovery of the debt concept across six fields is an example of multiple discovery (Ch. 26). But the chapter claims this is evidence of a real structural pattern rather than coincidence. Using the criteria from Chapter 26, evaluate this claim. How strong is the evidence for convergent discovery versus cultural borrowing?

M2. Technical debt in software is often a form of dark knowledge (Ch. 28) -- the experienced developers know where the debt is buried, but it is rarely documented. What happens when the developers who know where the debt is hidden leave the organization? How does dark knowledge loss interact with technical debt dynamics?

M3. Design a "debt discovery" methodology analogous to the dark knowledge extraction methods from Chapter 28. How would you surface hidden debts in a system? What are the barriers to debt discovery, and how do they compare to the barriers to dark knowledge extraction?

M4. Chapter 26 discussed the "adjacent possible" as a factor in multiple discovery. Is the concept of "debt" part of the adjacent possible -- a discovery that becomes available once certain prerequisites are in place? What prerequisites would a field need to have in place before it could discover its own version of the debt pattern?

M5. Combine the debt framework from this chapter with the dark knowledge framework from Chapter 28 and the multiple discovery framework from Chapter 26. Propose a unified model of how important structural patterns (like debt) are discovered, named, communicated, and sometimes lost across fields. What does this model predict about patterns that have been discovered in one field but not yet recognized in others?