Before you can read the parent topic comfortably, you must own every symbol it throws at you. This page builds each one from nothing, in an order where each idea leans only on the ones before it.
Look at the strip below. The sentence "Sure, I'd be happy to help" is chopped into boxes. Each box is one token. The model's whole life is: read the boxes so far, guess the next box.
We will write a token as yt, meaning "the token in position t." So y1 is the first token the model writes, y2 the second, and so on.
yt ::: the token at position t (the t-th box the model produces)
y<t ::: all tokens before position t — i.e. y1,y2,…,yt−1
So Pθ(y∣x) means: "the probability of completion y given prompt x, according to a model with settings θ." The little θ underneath is just a reminder that a different-trained model would give different probabilities.
The parent's key formula is:
P(y∣x)=∏t=1TP(yt∣y<t,x)
Let's earn every piece.
Reading the formula in plain words: the chance of the whole reply y equals the chance of token 1, times the chance of token 2 (given token 1), times the chance of token 3 (given tokens 1–2), and so on to the last token T.
T ::: the total number of tokens in the completion
The parent writes safety training as θ∗=argmaxθE[R(x,y)]. Three new symbols.
Read together: θ∗=argmaxθEx∼Duser[R(x,y)] = "pick the model settings that give the best average helpful-and-harmless score over normal user prompts." (See 5.3.04-RLHF for how this is actually done.)
The attacker's objective from the parent,
xadv=argmaxxPθ(yharmful∣x)⋅1[appears legitimate(x)],
now reads cleanly: find the prompt x that makes harmful output most likely, among only those prompts that look legitimate (indicator =1). If a prompt looks suspicious, the indicator is 0 and the whole product dies — so the attacker must stay disguised. (xadv is the "adversarial" prompt; see also 6.4.05-Red-Teaming and 3.2.07-Adversarial-Examples.)
Test yourself — you are ready for the parent page when each of these is instant:
What is a token, and what does yt mean? ::: A token is a small chunk of text (word or word-piece); yt is the token at position t.
What does the bar mean in P(A∣B)? ::: "The probability of Agiven that B is already true."
What does θ stand for? ::: All the tuned numbers (weights) inside the model.
Read Pθ(y∣x) in plain English. ::: The probability the model (settings θ) writes completion y given prompt x.
What does ∏t=1T do? ::: Multiplies the terms together for t=1 up to T.
Why does an early "Sure" token make later harmful tokens more likely? ::: Because each factor is conditioned on all previous tokens, so "Sure" enters the right side of every later ∣ and shifts those probabilities.
What does argmaxθ return? ::: The setting θ that makes the following quantity largest (not the value itself).
What does E[⋅] mean? ::: A likelihood-weighted average.
What does the indicator 1[appears legitimate] do in the attacker's objective? ::: It zeroes out prompts that don't look legitimate, forcing the attack to stay disguised.
Why do jailbreaks exist even after safety training? ::: Safety covers only a tiny painted region of all possible prompts (≪); blank regions still produce harmful output.
Recall One-line summary
Predict the next token, one at a time, given everything so far — jailbreaks just steer that "given."