Exercise 1: Why Stating the Expected Result After Each Step Matters — Possible Solution ==================================================================== WHAT AN EXPECTED RESULT ACTUALLY LETS THE READER DO ------------------------------ Per this chapter, stating the expected result lets the reader "confirm they're actually on track before moving forward, rather than discovering something went wrong three steps later." Without a stated expected result, a step either succeeded or failed silently from the reader's own perspective - they have no way to know which, so they simply proceed to the next step regardless. WHY THIS CHANGES WHEN A MISTAKE IS ACTUALLY CAUGHT ------------------------------ Without an expected result, an error introduced at step 2 is only discovered whenever its consequences eventually become obvious - possibly not until step 5, or not at all until the whole procedure fails to achieve its goal. By that point, the reader has to work backward through several steps to figure out where things actually went wrong, under exactly the stressed, time-pressured conditions this chapter is designed around. With a stated expected result at step 2, the same error is caught immediately, at the exact point it happened, before any further steps compound the problem. WHY THIS DISTINCTION MATTERS MORE UNDER PRESSURE SPECIFICALLY ------------------------------ Per this chapter, stress and fatigue already increase "the tendency to skip steps or misread instructions." A reader in that state is poorly positioned to notice a subtle problem developing gradually across several steps - they need the earliest, most explicit signal possible that something has gone wrong, which is exactly what an expected result provides at the moment it's most useful. WHY THIS ALSO CONNECTS TO CHAPTER 4's OWN UPCOMING MATERIAL ------------------------------ This chapter explicitly forward-references Chapter 4's own "verification" as a structural element of a well-built runbook - stating expected results after each step is the concrete writing practice that Chapter 4's own structural principle depends on being followed throughout the document. WHY THIS WORKS AS AN ANSWER ------------------------------ It explains what an expected result lets the reader actually confirm, contrasts when a mistake would be caught with and without one, and explains why catching it immediately rather than several steps later matters specifically for a reader already under the pressure this chapter is designed around.