Exercise 2: Why the Worked Example Is a Translation, Not a Simplification — Possible Solution ==================================================================== WHAT THE JARGON VERSION ACTUALLY SAYS ------------------------------ "The API's connection pool was exhausted due to a slow query holding a lock" - stripped to its underlying facts: something was working too slowly, that slowness caused a resource everything else depended on to run out, and other operations backed up behind it as a result. WHAT THE PLAIN-LANGUAGE VERSION ACTUALLY SAYS ------------------------------ "The system got overloaded because one part was taking too long to finish, which backed everything else up behind it - we've fixed the slow part." Checking this against the underlying facts: something was slow (the query), that slowness caused a shared resource to run out (the connection pool being exhausted), and other operations backed up behind it (everything else being "backed up"). Every one of those correspondences holds. WHY NO FACT WAS LOST OR DISTORTED ------------------------------ Per this chapter's own standard, "accuracy doesn't require including every true fact, it requires that everything included is true and nothing misleading is omitted." The plain-language version omits the specific technical vocabulary (connection pool, lock, query) but retains the actual causal chain those terms were describing - slowness causing resource exhaustion causing a backup. Nothing about "we've fixed the slow part" misrepresents what was actually done; it's simply the same fact stated without naming the specific technical mechanism. WHY THE OMITTED TECHNICAL VOCABULARY WASN'T NECESSARY INFORMATION ------------------------------ Per this chapter, the technique of "cutting unnecessary technical detail" applies because knowing the term "connection pool" specifically doesn't change what the user needs to know or do differently - the user's own actionable understanding (something was slow, it caused a backup, it's been fixed) is identical whether or not they know the internal component's specific name. WHY THIS QUALIFIES AS TRANSLATION RATHER THAN DUMBING DOWN, PER EXERCISE 1's OWN DISTINCTION ------------------------------ The content - the actual causal explanation of what went wrong - survived completely intact; only the vocabulary used to express it changed. That's exactly what Exercise 1 established distinguishes translation from dumbing down. WHY THIS WORKS AS AN ANSWER ------------------------------ It checks the plain-language version's own claims against the jargon version's underlying facts, shows the causal chain survived intact, and explains why the omitted vocabulary was unnecessary detail rather than lost information - making this a genuine translation rather than a simplification that sacrificed truth.