This page assumes nothing. If you have never seen a subscript or the letter β, start here and read top to bottom. Every symbol is earned before it is used again.
Before any symbol, hold this image: a machine with dials. You feed in numbers (the features), each dial has a strength setting (the coefficient), and out comes a prediction. Interpreting coefficients = reading the dial strengths.
Keep this machine in mind — every symbol below is a labelled part of it.
We write a feature as the letter x. When there are several features, we number them with a small subscript — a tiny number written below and to the right:
x1,x2,x3,…
The letter j is a stand-in — a placeholder that means "pick any one of them." When we say "feature xj," read it as "whichever feature we happen to be talking about right now."
If there are m features total, they run x1 up to xm. Here m is just "how many features there are" — a plain count, nothing more. (We deliberately use m, not p, because we will soon need P for probability and don't want two look-alike symbols fighting for the same letter.)
The parent calls βj a slope and even a partial derivative. You do not need calculus to get the picture.
The fancy symbol ∂xj∂y^ ("partial derivative") is just formal notation for "the slope in the xj direction while the other sliders are frozen." The curly ∂ (say "partial dee") is a "d" that means "we're varying only this one variable." So:
∂xj∂y^=βj
is nothing more than "the slope along feature j equals its dial strength." Same idea, formal clothing.
Linear regression outputs a number that can be anything. But some questions are yes/no (rain / no rain, disease / no disease). For those we need a few more symbols. See Logistic Regression and Odds and Log-Odds for the full story; here we just define the pieces.
Two symbols in that line need unpacking:
π (Greek "pie") is our name for the predicted probability. We use π — not the letter p — so it never collides with a feature count. It has nothing to do with the circle number 3.14…; it's just a label.
P(y=1∣x) reads "the Probability that the true answer y equals 1, given (∣) the whole feature vector x." The bar ∣ means "given that we know," and x is the full slider setting from §1.
Now we can write the logistic machine itself — the exact bridge the parent note builds on. The left side is the stretched output; the right side is the same additive machine from §4:
log(1−ππ)=β0+β1x1+β2x2+⋯+βmxm
The partner symbol is e, the special number e≈2.718. It undoes the logarithm: if log(a)=b then eb=a. So exponentiating (eβj) turns an added effect on log-odds back into a multiplied effect on odds — the parent's "Logistic multiplies."
To compare dials fairly across different-sized sliders, the parent standardizes features. That brings a few more symbols from Feature Scaling & Standardization.
The clump σjxj−μj reads: "how many typical spreads is this value away from its average?" Subtract the mean (xj−μj) to centre it, divide by the spread (σj) to rescale it. That is all standardization does.