Quant Terminal
A1-00A1·intro·~12 min

How to read the math

notationfoundationsreading-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 XX or rr, it is a name for a number whose value we don't know yet.

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 (XX, YY, ZZ) are used for uncertain quantities. Lowercase letters (xx, aa, bb) usually stand for specific, ordinary numbers — like 5, or 0.02.

Reading P( ... )

P(something)P(\text{something}) reads: "the probability that something happens." It is always a number between 0 and 1.

In words: PP 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

SymbolRead asExample
<<less thanX<0X < 0 — "X is negative"
>>greater thanX>0X > 0 — "X is positive"
\leless than or equal toX2X \le 2 — "X is at most 2"
\gegreater than or equal toX2X \ge 2 — "X is at least 2"

A chained expression describes a range:

aXba \le X \le b

In words: "XX lands somewhere between aa and bb, endpoints included." So P(1X1)P(-1 \le X \le 1) reads: "the probability that XX lands between minus 1 and plus 1."

A memory hook for \le vs <<: the extra line under the symbol is the "or equal" part.

Subscripts are item numbers in a list

X1,X2,X3,,XnX_1, X_2, X_3, \ldots, X_n

In words: "a list of nn quantities, numbered 1 through nn." If X1X_1 is Monday's return and X2X_2 is Tuesday's, then X47X_{47} is just "the 47th day's return." The little number identifies which one — it never multiplies or changes anything.

The letter nn is the traditional name for "how many items there are." With 252 trading days of data, n=252n = 252.

The big sigma means "add them all up"

i=1nXi\sum_{i=1}^{n} X_i

In words: "add up all the XX values, from item 1 through item nn." That's the whole meaning. The \sum (Greek capital sigma, chosen because Sum starts with S) is a loop: start the counter ii at 1, go up to nn, and add each XiX_i to a running total.

Concrete example — three daily returns of 1%, then −2%, then 0.5%:

i=13Xi=0.01+(0.02)+0.005=0.005\sum_{i=1}^{3} X_i = 0.01 + (-0.02) + 0.005 = -0.005

As a programmer would write it: total = 0; for i in 1..n: total += X[i]. Every \sum 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:

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]

E[X]\mathbb{E}[X] reads: "the expected value of XX" — the average value XX would take over many, many repeats. If a coin flip pays 1forheadsand1 for heads and 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

  1. Read left to right, out loud, translating each symbol into words.
  2. Do not skim past a formula. A formula is the most information-dense sentence in the lesson — skimming it is skipping the point.
  3. 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.
  4. Then check the "In words:" line that follows — it should match the sentence you produced.
⧉ Review card
How do you read P(X > 0) aloud, and what is it if X is tomorrow's return?
The probability that X is greater than zero. If X is tomorrow's return, it is the chance tomorrow is an up day.
⧉ Review card
What does the subscript in X_7 mean?
It is an item number: X_7 is the 7th quantity in a list (for example, the 7th day's return). Subscripts identify which item; they never multiply.
⧉ Review card
What does the big sigma (summation) symbol tell you to do?
Add them all up: run a counter from the bottom value to the top value and total the terms. It is exactly a for-loop accumulating a sum.
⧉ Review card
What roles do the Greek letters mu and sigma conventionally play?
Mu is the average (center) of a quantity; sigma is the typical spread around that average. Large sigma means wide swings, small sigma means values stay near the center.
⧉ Review card
What is the difference between X less-than-or-equal 2 and X strictly-less-than 2?
Less-than-or-equal includes the endpoint 2 itself ('at most 2'); strictly-less-than excludes it. The extra line under the symbol is the 'or equal' part.

Summarize before the next lesson

In two or three of your own sentences: what does P()P(\,\cdot\,) 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