Before you can read the parent note, you must own every symbol it throws at you. This page builds them one at a time, from nothing, in the order they depend on each other.
The letter Q is the traditional name for the output wire of a flip-flop — the one bit it currently remembers.
Why the topic needs it: the whole point of a flip-flop is storage. Q is the thing being stored. Every equation in the parent note is really a sentence about "what will Q become".
Why the topic needs it: the parent's whole magic trick — "the forbidden state becomes structurally impossible" — relies on the fact that Q and Q can never both be 1 at the same time. Hold onto that: it is used in the JK derivation.
Why the topic needs it: every boxed formula in the parent — such as Qnext=JQ+KQ (whose letters we define in §5) — is a recipe that computes the next frame from the current one plus the inputs.
Why the topic needs it: the parent's third mistake ("level-triggered JK oscillates") is entirely about when the update happens. If the box updates continuously instead of once per edge, a toggle command makes it spin forever. See Edge-Triggering and Master-Slave for the deeper story.
These three symbols look like arithmetic but mean something different — they combine bits.
Why the topic needs it: the parent's formulas combine input bits with exactly these three operations. In the very next section we meet the actual input letters (J,K,T) and the internal signals (S,R) that get glued together with AND and OR.
The parent note uses five one-letter input names. Here is what each stands for, from zero.
Why the topic needs it: the parent glues these input letters to the current state with AND/OR — for example the internal signals S=J⋅Q and R=K⋅Q, and the characteristic equation Qnext=JQ+KQ. You cannot read a single formula without knowing which letter is which wire.
Why the topic needs it: the T flip-flop's whole equation is Qnext=T⊕Q. "Change the bit exactly when T and Q disagree" — which is precisely "toggle when T=1". See XOR Gate for the gate itself.
Why the topic needs it: the excitation tables use X (e.g. 0→1 needs J=1,K=X). Those freedoms are exactly what make JK cheap to simplify later with Karnaugh Maps.
Two tables, opposite directions — keep them apart.
Why the topic needs it: you analyse with the first and design counters with the second. Confusing them is the parent's fourth listed mistake. More in Excitation Tables and Sequential Design.
The starting materials on the left (SR Flip-Flop, gates, the clock) flow rightward: S,R become J,K, which specialise into T, then feed real designs like Ripple Counters.