How to read the math
▸ Pretest — guess, even if you don't know
A lesson shows you the expression P(X = 5). Without any training, what is the most reasonable way to read it aloud?
Math notation is a language, not a test
Nothing in this curriculum requires you to be "good at math." It requires you to read math — and reading is a skill you learn once.
Math notation exists for one reason: compression. "The chance that tomorrow's return lands between minus one percent and plus one percent" is 14 words. The same idea in symbols is 10 characters. Once you can read the symbols, the short version becomes easier than the sentence, not harder.
The rule for this entire curriculum: every formula can be read aloud as an English sentence, and the first time a formula appears, we write that sentence out. If you ever hit a formula you cannot read aloud, that is a bug in the lesson — not a gap in you.
Letters stand for unknown numbers
When you see a letter like or , it is a name for a number whose value we don't know yet.
- might be "tomorrow's closing price of SPY."
- might be "next month's return of my portfolio."
The number exists — we just haven't observed it. Naming it lets us talk about it before we know it, the way "the winner of next year's World Cup" names a team before the tournament is played.
By convention, capital letters near the end of the alphabet (, , ) are used for uncertain quantities. Lowercase letters (, , ) usually stand for specific, ordinary numbers — like 5, or 0.02.
Reading P( ... )
reads: "the probability that something happens." It is always a number between 0 and 1.
- — "the probability that turns out to equal 5."
- — "the probability that is greater than zero." If is tomorrow's return, this is the chance tomorrow is an up day.
In words: is a machine. You put a statement inside the parentheses, and it tells you how likely that statement is to be true.
The comparison symbols
| Symbol | Read as | Example |
|---|---|---|
| less than | — "X is negative" | |
| greater than | — "X is positive" | |
| less than or equal to | — "X is at most 2" | |
| greater than or equal to | — "X is at least 2" |
A chained expression describes a range:
In words: " lands somewhere between and , endpoints included." So reads: "the probability that lands between minus 1 and plus 1."
A memory hook for vs : the extra line under the symbol is the "or equal" part.
Subscripts are item numbers in a list
In words: "a list of quantities, numbered 1 through ." If is Monday's return and is Tuesday's, then is just "the 47th day's return." The little number identifies which one — it never multiplies or changes anything.
The letter is the traditional name for "how many items there are." With 252 trading days of data, .
The big sigma means "add them all up"
In words: "add up all the values, from item 1 through item ." That's the whole meaning. The (Greek capital sigma, chosen because Sum starts with S) is a loop: start the counter at 1, go up to , and add each to a running total.
Concrete example — three daily returns of 1%, then −2%, then 0.5%:
As a programmer would write it: total = 0; for i in 1..n: total += X[i]. Every you will ever see is that loop.
Greek letters you will meet soon
Greek letters are just more names — used by convention for particular roles:
- (mu, sounds like "mew") — the average, or center, of a quantity.
- (sigma, lowercase) — the typical spread around that average. Big means the value swings wildly; small means it stays close to .
- (beta) — you'll meet it in finance as "how strongly something moves with the market."
You never need to write Greek by hand. You only need to recognize each letter and remember which role it plays.
One more you'll see: E[X]
reads: "the expected value of " — the average value would take over many, many repeats. If a coin flip pays 0 for tails, the expected value is 0.50: not a value you ever receive on a single flip, but the long-run average per flip. A full lesson (A1-04) builds this idea carefully; for now you only need the pronunciation.
How to read any formula
- Read left to right, out loud, translating each symbol into words.
- Do not skim past a formula. A formula is the most information-dense sentence in the lesson — skimming it is skipping the point.
- If a symbol is unfamiliar, stop. Every symbol in this curriculum is introduced before it is used; check back one lesson or revisit this one.
- Then check the "In words:" line that follows — it should match the sentence you produced.
⧉ Review cardHow do you read P(X > 0) aloud, and what is it if X is tomorrow's return?
⧉ Review cardWhat does the subscript in X_7 mean?
⧉ Review cardWhat does the big sigma (summation) symbol tell you to do?
⧉ Review cardWhat roles do the Greek letters mu and sigma conventionally play?
⧉ Review cardWhat is the difference between X less-than-or-equal 2 and X strictly-less-than 2?
Summarize before the next lesson
In two or three of your own sentences: what does do, and what kind of thing goes inside its parentheses? Saying it in your own words now will make the next lesson — where we make "probability" precise — feel familiar instead of foreign.
◈ Calibration check
If a formula with P, a comparison symbol, and a subscript appeared right now, how confident are you that you could read it aloud?
1 = guessing · 5 = could teach it
⏻ End of lesson
Mark it read to book its 5 review cards into your deck.
Sources & further reading
- bookWasserman (2004), All of Statistics — §Notation appendix, 1
- bookRoss (2014), Introduction to Probability Models, 11e — §1