Before you can read the parent note fluently, you need to own every word it throws at you. This page builds each one from nothing, in an order where each idea rests on the one before it.
The picture: a closed book on a shelf. It contains steps, but nobody is cooking.
We need this word because the parent note keeps saying "a process is not the program." You can't understand that sentence until "program" means something precise to you. (Deeper contrast: Program vs Process.)
WHY the topic needs this distinction: the whole rest of the chapter — states, saving, resuming — only makes sense for something moving. A file on disk has no "state"; only an activity in progress can be "paused at line 100." Look at the figure: the same recipe (left) becomes two different live cookings (right) if two people start it — that's why one program can spawn many processes.
The picture: a bookmark. If you lose the bookmark, you don't know where to continue — you'd flip to a random page and cook garbage.
WHY: the parent note calls PC "the single most critical field." Now you know why: it is the answer to "where was I?" Without a name for it, you can't even state the resume problem.
WHY: the parent's biggest mistake callout ("the PCB stores the code") only clears up once you see that the code lives here, in the address space, and the PCB merely points at this kitchen — it doesn't contain it. The PCB is a sticky note; the kitchen is huge.
WHY: the arrows "dispatch," "timeout," "interrupt" in the parent's state diagram are meaningless until these actors have faces. The figure shows the scheduler as a hand moving a token from the Ready line onto the single CPU seat.
WHY: this is exactly why the Blocked state exists. A process asks for slow data, and rather than freeze the whole CPU standing at the toaster, it steps aside (Blocked) until the pop (event) lets it rejoin the line. Deeper: Inter-Process Communication uses these same waits.
WHY it belongs in foundations: every arrow into or out of Running is powered by a context switch. Knowing the word now means the state diagram reads as actions, not magic.