Skip to content
AriadneTechnology

The Outer Ring · Chamber 1 of 9

Reading Mathematics Aloud

Greek letters, typefaces, subscripts and hats: learn to say every symbol out loud before you try to understand it.

35 min 50 XP + 12 questions + 1 challengeNotationVideoPapersProofsCodeLab

In this chamber you will

  • Read the Greek letters of ML aloud and know their usual jobs
  • Decode typefaces: italic scalars, bold vectors, capital matrices, calligraphic sets
  • Read subscripts, superscripts, hats, bars, tildes and stars
  • Follow your first proof and submit your first coding answer

How every chamber works

Machine learning is written in mathematics, and research papers are written in it densely. This course doesn't try to make you a mathematician. It teaches you to read: to look at a line of symbols and hear a sentence, the way you hear a sentence when you look at these words.

Every chamber runs the same loop. It's the loop researchers run whenever they meet a new idea:

1

Discover

Meet the idea in the wild, before it has a name.

2

Learn

Notation, definitions, derivations and proofs.

3

Read beyond

Go past the course: books, notes and articles.

4

Papers & lectures

Find it in real research, and watch the experts.

5

Your turn

Prove it, code it, test yourself. Then repeat.

Markers like the one below show where you are in the loop. When a chamber ends, the loop starts again in the next one, one layer deeper.

Along the way you'll find three kinds of optional challenge, each worth extra XP: proofs (put one in order, or write your own), coding problems in the style of Project Euler (work out a single number and submit it), and paper decoders (take an equation from a real paper apart, symbol by symbol). The checkpoint questions at the end are what clear the chamber.

DiscoverLearnRead beyondPapers & lecturesYour turn

Discover: a sentence you can't read yet

Here is one line from a 2017 research paper:

Spotted in the wild

Attention(Q,K,V)=softmax(QK⊤dk)V\mathrm{Attention}(Q, K, V) = \mathrm{softmax}\left(\frac{QK^{\top}}{\sqrt{d_k}}\right)V
Vaswani et al. (2017), “Attention Is All You Need”, Equation 1

That line is the attention mechanism, the engine inside every large language model. If it looks like hieroglyphs right now, good: that's the honest starting point. Look at how many small conventions it packs in. There are capital letters that stand for grids of numbers, a word set in upright type, a little ⊤\top that looks like a power but isn't one, and a subscript kk that labels which dd we mean. By Chamber 9 you'll read this line aloud like an ordinary sentence and turn it into working code.

The first skill is humbler than understanding. It's saying the symbols out loud. You can't think clearly about a symbol you can't name, and you can't ask a colleague about it either. Mathematicians read equations as sentences: y^=2x+1\hat{y} = 2x + 1 is “y hat equals two x plus one”.

Quick check +20 XP

Take a guess before reading on. How is y^\hat{y} usually read aloud?

DiscoverLearnRead beyondPapers & lecturesYour turn

Learn: the Greek alphabet of machine learning

Why Greek? Partly history: modern mathematics grew up in Europe, where scholars read Greek. Mostly it's practical. A single paper can need forty different symbols, and the Latin alphabet runs out fast. Greek letters also come with habits. θ\theta almost always means a model's parameters, and η\eta almost always means a learning rate. They're habits, not laws, but knowing them lets you guess a symbol's job before the paper tells you.

Greek letters you'll meet in ML papers
  • α\alpha“alpha”
    A step size or learning rate (Adam calls it α\alpha), or a coefficient in a weighted mix.
    α=0.001\alpha = 0.001
  • β\beta“beta”
    Decay rates, like Adam's β1\beta_1 and β2\beta_2; also regression coefficients.
    β1=0.9\beta_1 = 0.9
  • γ\gamma“gamma”
    The discount factor in reinforcement learning; the learned scale in batch normalisation.
    γ=0.99\gamma = 0.99
  • δ\delta“delta”
    A small change, or the error signal flowing backwards through a network.
    δj\delta_j
  • Δ\Delta“capital delta”
    A difference or change: Δθ\Delta\theta is “the change in θ\theta”.
    Δθ=θt+1−θt\Delta\theta = \theta_{t+1} - \theta_t
  • ϵ\epsilon“epsilon”
    A tiny positive number, like 10−810^{-8}, added to avoid dividing by zero. In proofs, an arbitrarily small tolerance.
    ϵ=10−8\epsilon = 10^{-8}
  • ε\varepsilon“curly epsilon”
    The same letter in another style, often used for random noise.
    y=f(x)+εy = f(x) + \varepsilon
  • η\eta“eta”
    The learning rate in gradient descent and its relatives.
    θ←θ−η g\theta \leftarrow \theta - \eta\, g
  • θ\theta“theta”
    The parameters of a model: every weight and bias, bundled together.
    fθ(x)f_\theta(x)
  • λ\lambda“lambda”
    The strength of a penalty (regularisation); later, an eigenvalue.
    L+λR\mathcal{L} + \lambda R
  • μ\mu“mu”
    A mean (average), especially of a distribution.
    μ=0\mu = 0
  • σ\sigma“sigma”
    A standard deviation (how spread out values are), or the sigmoid function σ(z)\sigma(z).
    σ(z)\sigma(z)
  • Σ\Sigma“capital sigma”
    “Add them all up” (Chamber 5), or a covariance matrix.
    ∑i=1nxi\sum_{i=1}^{n} x_i
  • π\pi“pi”
    The constant 3.14159…3.14159\ldots; in reinforcement learning, a policy.
    π≈3.14159\pi \approx 3.14159
  • Π\Pi“capital pi”
    “Multiply them all together” (Chamber 5).
    ∏i=1npi\prod_{i=1}^{n} p_i
  • ϕ\phi“phi”
    A feature map ϕ(x)\phi(x), or the parameters of a second network.
    ϕ(x)\phi(x)
  • ω\omega“omega”
    A weight or a frequency. Easy to mistake for ww.
    ω1\omega_1
  • τ\tau“tau”
    A temperature (how soft a softmax is) or a time constant.
    τ=0.5\tau = 0.5
  • ρ\rho“rho”
    A correlation or a density. Easy to mistake for pp.
    ρ=0.8\rho = 0.8
  • κ\kappa“kappa”
    A condition number: how badly scaled an optimisation problem is.
    κ=100\kappa = 100
  • ν\nu“nu”
    Degrees of freedom, or another rate. Looks almost exactly like vv.
    ν=3\nu = 3
  • ξ\xi“xi”
    Often a random variable or noise. Said “ksee” or “zai”, and famously hard to handwrite.
    ξ\xi
  • χ\chi“chi”
    Said “kai”. Best known from the χ2\chi^2 (chi-squared) test.
    χ2\chi^2

Press the speaker icon to hear a reading. Pronunciations vary from place to place. British speakers tend to say “BEE-tuh” where Americans say “BAY-tuh”, and both are fine. What matters is that you can say it.

Quick check +20 XP

In the update θt+1=θt−η gt\theta_{t+1} = \theta_t - \eta\, g_t, what job is η\eta doing?

Learn: typefaces carry meaning

In ordinary writing, bold and italics are for emphasis. In mathematics they change what a letter is. The same letter xx can be a single number, a list of numbers or a whole dataset, depending only on how it's printed.

Typeface conventions
  • xx“x”
    Plain italic lower case: a scalar, one single number.
    x=3.2x = 3.2
  • x\mathbf{x}“bold x”
    Bold lower case: a vector, an ordered list of numbers.
    x=(x1,x2,x3)\mathbf{x} = (x_1, x_2, x_3)
  • X\mathbf{X}“bold capital X”
    Bold (or plain) upper case: a matrix, a grid of numbers. Often a whole dataset, one example per row.
  • L\mathcal{L}“calligraphic L”
    Curly capitals name special objects: L\mathcal{L} a loss, D\mathcal{D} a dataset, N\mathcal{N} the normal distribution.
    L(θ)\mathcal{L}(\theta)
  • R\mathbb{R}“blackboard bold R”
    Double-struck capitals name number systems. R\mathbb{R} is the real numbers (Chamber 2).
    x∈Rx \in \mathbb{R}
  • softmax\mathrm{softmax}“upright softmax”
    Upright letters spell the names of functions (log⁡\log, exp⁡\exp, softmax\mathrm{softmax}), never a product of variables.
    log⁡x\log x

These conventions are common but not universal. The notation page of Goodfellow, Bengio and Courville's Deep Learning follows them closely, and many papers copy it. Plenty of others write vectors in plain italics and trust you to work it out from context. When in doubt, look for the paper's notation section. Chamber 9 shows you how to build your own notation table when a paper doesn't provide one.

Quick check +20 XP

A paper writes y^=w⊤x+b\hat{y} = \mathbf{w}^\top \mathbf{x} + b. Going by the typeface conventions, which symbols are vectors?

Learn: subscripts, superscripts and indices

Small symbols attached to a letter are its address. A subscript usually says which one: which entry of a list, which step of an algorithm, which layer of a network. A superscript usually says what power, unless it's wearing brackets.

Indices and powers
  • xix_i“x sub i”
    The ii-th entry of a list (or the ii-th example). A subscript is an index: a position.
    x1,x2,…,xnx_1, x_2, \ldots, x_n
  • AijA_{ij}“A sub i j”
    The entry in row ii and column jj of a matrix. Two indices, two directions.
    A23A_{23}
  • x2x^2“x squared”
    A superscript number is usually a power: x⋅xx \cdot x.
    x3=x⋅x⋅xx^3 = x \cdot x \cdot x
  • x(i)x^{(i)}“x superscript i”
    A superscript in brackets is an index, not a power: the ii-th training example.
    x(1),…,x(n)x^{(1)}, \ldots, x^{(n)}
  • θt\theta_t“theta at step t”
    A subscript tt often means “at time step tt”: the value after tt updates.
    θ0,θ1,θ2\theta_0, \theta_1, \theta_2
  • x′x'“x prime”
    Another xx (a second point, a new value). On a function, f′f' means its derivative (Chamber 7).
    f′(x)f'(x)

Here is a whole equation read aloud. It's the core of gradient descent:

θt+1=θt−η gt\theta_{t+1} = \theta_t - \eta\, g_t

“Theta at step tt plus one equals theta at step tt, minus eta times g at step tt.” In plain words: the next parameters are the current parameters minus a small step, of size η\eta, in the direction gg. Notice that the equation describes every step at once. The subscript tt is a placeholder for “whichever step you're on”.

Quick check +20 XP

In x(3)x^{(3)}, what does the (3)(3) mean?

Learn: hats, bars, tildes and stars

Decorations sit on top of a symbol and change its meaning without changing its name. They are the adjectives of mathematics.

Decorations
  • y^\hat{y}“y hat”
    A hat means estimated or predicted: y^\hat{y} is the model's guess at yy.
    y^=fθ(x)\hat{y} = f_\theta(x)
  • xˉ\bar{x}“x bar”
    A bar means an average: xˉ\bar{x} is the mean of the xx values.
    xˉ=12(x1+x2)\bar{x} = \tfrac{1}{2}(x_1 + x_2)
  • x~\tilde{x}“x tilde”
    A tilde means a modified version: noisy, approximate or transformed.
    x~=x+ε\tilde{x} = x + \varepsilon
  • θ⋆\theta^\star“theta star”
    A star means optimal: the best possible value. Also written θ∗\theta^*.
    θ⋆\theta^\star
  • v⃗\vec{v}“v arrow”
    An arrow marks a vector in school and physics. ML papers prefer bold, v\mathbf{v}.
    v⃗\vec{v}

A typical sentence from a statistics paper uses two of them at once: “our estimate θ^\hat{\theta} converges to the true parameter θ⋆\theta^\star as the dataset grows.” The hat is what we can compute. The star is what we wish we knew.

Learn: the verbs of mathematics

If symbols are nouns and decorations are adjectives, relations are the verbs. The equals sign is only one of them, and confusing it with its cousins is one of the most common reading mistakes.

Relations and other verbs
  • ==“equals”
    Both sides are the same value. A claim you could check.
    2+2=42 + 2 = 4
  • :=:=“is defined as”
    The left side is a new name for the right side. Not a claim to check: a definition.
    xˉ:=12(x1+x2)\bar{x} := \tfrac{1}{2}(x_1 + x_2)
  • ≜\triangleq“is defined as (delta-equals)”
    Another way to write a definition, common in engineering papers.
    f(x)≜x2f(x) \triangleq x^2
  • ≡\equiv“is identical to”
    Equal for every value of the variables (an identity). Some authors also use it for definitions.
    (a+b)2≡a2+2ab+b2(a+b)^2 \equiv a^2 + 2ab + b^2
  • ≈\approx“is approximately”
    Close, but not exactly equal.
    π≈3.14\pi \approx 3.14
  • ∝\propto“is proportional to”
    Equal up to a constant factor: y∝xy \propto x means y=c xy = c\,x for some fixed cc.
    y∝x2y \propto x^2
  • ≪\ll“is much less than”
    Smaller by a large factor.
    r≪dr \ll d
  • ←\leftarrow“gets”
    Assignment in an algorithm: compute the right side, store it in the left. An update, not an equation.
    m←m+1m \leftarrow m + 1
  • ■\blacksquare“end of proof”
    The “tombstone”: the proof is finished. Older texts write Q.E.D.
    ■\blacksquare

Compare four lines that look almost the same:

  • xˉ:=x1+x22\bar{x} := \frac{x_1 + x_2}{2} defines xˉ\bar{x}. It's a naming, not a fact.
  • xˉ=5\bar{x} = 5 claims a fact that you could check.
  • xˉ≈5\bar{x} \approx 5 claims it's close to 5.
  • m←m+1m \leftarrow m + 1 updates mm. As an equation, m=m+1m = m + 1 would be impossible. As an instruction, it just means “add one to mm”.

Learn: your first proof

A proof is an argument that leaves no room for doubt. Every step follows from the ones before it, from definitions, or from facts already proved. Proofs are how mathematics, and the theory side of machine learning, earn the right to say “always”.

Here's a small one, with its anatomy labelled.

Claim. The sum of two even integers is even.

First, the definition we'll need. An integer nn is even if n=2kn = 2k for some integer kk.

Proof. Let aa and bb be even integers. By the definition, there are integers mm and nn with a=2ma = 2m and b=2nb = 2n. (Two different letters! Writing a=2ka = 2k and b=2kb = 2k would secretly assume a=ba = b.) Then

a+b=2m+2n=2(m+n).a + b = 2m + 2n = 2(m + n).

Since m+nm + n is an integer, a+ba + b is two times an integer, so it's even. ■\blacksquare

Every proof you'll meet has the same bones. There's the claim to be shown. There's what we may assume. Definitions get unpacked into symbols, a chain of steps follows, each justified, and a conclusion matches the claim word for word. Then comes the little black square.

You'll put a proof together and write one of your own in the last part of this chamber.

DiscoverLearnRead beyondPapers & lecturesYour turn

Read beyond the course

No one learns a language from a single teacher. These are worth your time now, and they're all free. Mark each one as read when you're done, and your reading will start to count towards badges.

Book · free online · ~15 min

Deep Learning: Notation

Ian Goodfellow, Yoshua Bengio & Aaron Courville · Front matter

The standard reference for how deep-learning papers write things. Skim it now, then come back after each chamber of this course and notice how much more of it you can read.

Book · free online · ~25 min

Mathematics for Machine Learning

Marc Peter Deisenroth, A. Aldo Faisal & Cheng Soon Ong · Chapter 1: Introduction and Motivation

A free, widely used textbook covering the mathematics behind machine learning in more depth than this course. Chapter 1 explains why the notation is worth learning, and the rest of the book will be your companion for the next course, Linear Algebra.

Article · free online · ~10 min

Greek letters used in mathematics, science, and engineering

Wikipedia

Letter by letter, the jobs each Greek letter does across the sciences. Useful for seeing that ML's habits are only one dialect.

Article · free online · ~20 min

Reading mathematics

MAA Mathematical Communication

A curated set of short guides on reading mathematics actively: working your own examples as you go, and questioning every step. The habits in these guides are what the rest of this course trains.

Tool · free online · ~5 min

Detexify

Daniel Kirsch

Draw a symbol you don't recognise and Detexify finds its LaTeX command, and with it the symbol's name. The fastest way to look up something you can't even type.

DiscoverLearnRead beyondPapers & lecturesYour turn

Papers and lectures

Papers are where notation lives in the wild, and you don't need to understand a whole paper to learn from it. Here's a legitimate way for a beginner to read the Adam paper today. Open it and skip straight to Algorithm 1 near the top of page 2. It's about a dozen lines of pseudocode. Read each line aloud using this chamber's tables, then read the few sentences just below the box, which explain it in words. That's it. You'll come back for the rest when you've met more of the ideas.

Adam: A Method for Stochastic OptimizationDiederik P. Kingma, Jimmy Ba · ICLR, 2015

One of the most cited papers in machine learning, and a feast of Greek letters, hats and subscripts. Its optimiser trains a large share of today's neural networks.

Decode the paper · Algorithm 1

Adam: A Method for Stochastic Optimization

Diederik P. Kingma, Jimmy Ba · ICLR, 2015

+30 XP
θt←θt−1−α⋅m^tv^t+ϵ\theta_t \leftarrow \theta_{t-1} - \alpha \cdot \frac{\hat{m}_t}{\sqrt{\hat{v}_t} + \epsilon}

The last line of Adam's Algorithm 1: the update applied to every parameter at every step. Every piece of notation in it comes from this chamber. Match each symbol to its meaning.

θt\theta_t
θt−1\theta_{t-1}
←\leftarrow
α\alpha
m^t\hat{m}_t
v^t\hat{v}_t
ϵ\epsilon

Options

Watch

Every Greek Letter in Math ExplainedThoughtThrill · 12 min

A tour of the Greek letters and the jobs they do across mathematics. Watch it with the table above open, and notice where machine learning's habits differ from physics' or statistics'.

DiscoverLearnRead beyondPapers & lecturesYour turn

Your turn

Time to make it stick. Start with a sprint through the alphabet. Then translate between symbols, words and code, assemble a proof and write one, and finally solve three problems in code.

Interactive lab

Greek alphabet sprint

12 symbols, one at a time. Pick how each is read aloud. Score 11 or more to pass. Speed is optional, but the clock is running…
Challenge: Alpha to OmegaScore at least 11 out of 12 in a Greek-alphabet sprint.+30 XP

Match · Symbols ↔ Read aloud as

Say it aloud

+25 XP

Match each expression to the way a researcher would read it aloud.

y^i\hat{y}_i
xˉ\bar{x}
θ⋆\theta^\star
x(i)x^{(i)}
x2x^2
θt+1\theta_{t+1}
x~\tilde{x}

Options

Match · Maths ↔ Python

From symbols to Python

+25 XP

Code is notation too. Match each formula to the Python that computes it. One wrinkle to remember: Python counts from 0 while most papers count from 1, so a paper's x1x_1 usually becomes x[0].

θt+1=θt−η gt\theta_{t+1} = \theta_t - \eta\, g_t
xˉ=a+b2\bar{x} = \frac{a + b}{2}
y^=wx+b\hat{y} = w x + b
xj(i)x^{(i)}_j
xi2x_i^2
ηt=η0 γt\eta_t = \eta_0\, \gamma^{t}

Options

Proofs

The first proof comes in pieces: pick the lines in order, and leave out the ones that don't belong. The second you write yourself. You can use LaTeX\LaTeX between dollar signs, and it's typeset as you type.

Proof puzzle

The average lies in between

+25 XP

Claim

For any real numbers a≤ba \le b, their average lies between them: a≤a+b2≤b.a \le \frac{a+b}{2} \le b.

Tap lines in the order they should appear. Not every line belongs. Tap a line in your proof to send it back.

Your proof

  1. Pick the first line below.

Available lines

Prove it yourself

Odd times odd is odd

+40 XP

Claim

The product of two odd integers is odd. (An integer nn is odd if n=2k+1n = 2k + 1 for some integer kk.)

Preview

Your typeset proof appears here.

Code it up

These problems work the way Project Euler's do. Since 2001, Project Euler has set mathematical puzzles that are meant to be solved by writing a short program. Each problem has exactly one answer. Read the notation carefully, write a few lines of code, and submit the number. You can use Python on your own machine, or open the runner under each problem to run Python right here in your browser.

Problem 1·Warm-up

One per cent of a learning rate

+20 XP

Many training runs shrink the learning rate as they go. A common schedule is exponential decay:

ηt=η0 γt,\eta_t = \eta_0\, \gamma^{t},

where η0\eta_0 is the initial learning rate, γ\gamma (gamma) is the decay factor and t=0,1,2,…t = 0, 1, 2, \ldots counts training steps. Read carefully: the tt in ηt\eta_t is a subscript (“at step tt”), but the tt in γt\gamma^{t} is a power.

With η0=0.1\eta_0 = 0.1 and γ=0.99\gamma = 0.99, what is the first step tt at which the learning rate drops below one per cent of where it started, that is, ηt<0.001\eta_t < 0.001?

An exact integer (or a fraction like 7/12)

Problem 2·Standard

Hats off to bias correction

+35 XP

Optimisers like Adam keep a running average of recent gradients, called an exponential moving average:

mt=β mt−1+(1−β) xt,m0=0.m_t = \beta\, m_{t-1} + (1 - \beta)\, x_t, \qquad m_0 = 0.

Because it starts at m0=0m_0 = 0, the early averages are dragged towards zero. The fix wears a hat:

m^t=mt1−βt.\hat{m}_t = \frac{m_t}{1 - \beta^{t}}.

Two readings to get right: mt−1m_{t-1} is “mm at the previous step” (an index), while βt\beta^{t} is “β\beta to the power tt”.

Let xt=7t mod 11x_t = 7t \bmod 11 for t=1,2,3,…t = 1, 2, 3, \ldots (so x1=7x_1 = 7, x2=3x_2 = 3, x3=10x_3 = 10, …) and β=0.9\beta = 0.9. Compute m^20\hat{m}_{20}, rounded to 4 decimal places.

A number, rounded to 4 decimal places

Problem 3·Standard

Superscripts are not powers

+35 XP

A dataset has n=1000n = 1000 examples, x(1),…,x(1000)x^{(1)}, \ldots, x^{(1000)}. Each example has three features, written x1(i)x^{(i)}_1, x2(i)x^{(i)}_2 and x3(i)x^{(i)}_3: the superscript (i)(i) says which example, the subscript says which feature. The features are

xj(i)=((i⋅j2) mod 11)−5.x^{(i)}_j = \big((i \cdot j^2) \bmod 11\big) - 5.

For how many examples ii is

(x1(i))2+(x2(i))2>(x3(i))2 ?\big(x^{(i)}_1\big)^2 + \big(x^{(i)}_2\big)^2 > \big(x^{(i)}_3\big)^2\,?

This time the outer 2^2 is a power: square the feature values.

An exact integer (or a fraction like 7/12)

Key takeaways

  • Say it before you solve it. Every symbol has a name, and reading equations aloud is the first step to understanding them.
  • Greek letters have habits: θ\theta for parameters, η\eta or α\alpha for learning rates, μ\mu and σ\sigma for mean and spread, λ\lambda for penalties, ϵ\epsilon for tiny numbers.
  • Typefaces carry meaning: xx is a number, x\mathbf{x} a vector, X\mathbf{X} a matrix, L\mathcal{L} a special object, R\mathbb{R} a number system, and upright words are names.
  • Subscripts are positions. Bracketed superscripts like x(i)x^{(i)} are positions too, but a bare superscript like x2x^2 is a power.
  • Decorations are adjectives: a hat is an estimate, a bar an average, a tilde a modified copy, a star the optimum. And :=:= defines, ←\leftarrow updates, ≈\approx approximates.

Checkpoint

Prove it to the labyrinth

Answer every question to clear this chamber. First-try answers earn the most XP.

0/8
Question 1 of 8 +20 XP

Which Greek letter do ML papers most often use for all the parameters of a model?

Question 2 of 8 +20 XP

How would you read L(θ)\mathcal{L}(\theta) aloud, and what does it usually mean?

Question 3 of 8 +20 XP

Let xˉ\bar{x} be the mean of x1=4x_1 = 4, x2=7x_2 = 7 and x3=13x_3 = 13. What is xˉ\bar{x}?

Question 4 of 8 +20 XP

What does :=:= mean in xˉ:=x1+x22\bar{x} := \frac{x_1 + x_2}{2}?

Question 5 of 8 +20 XP

Which pair of symbols is notoriously easy to confuse?

Question 6 of 8 +20 XP

Start from θ0=5\theta_0 = 5 and apply θt+1=θt−η θt\theta_{t+1} = \theta_t - \eta\,\theta_t with η=0.1\eta = 0.1. What is θ2\theta_2?

Question 7 of 8 +20 XP

A statistics paper writes both θ⋆\theta^\star and θ^\hat{\theta}. What is the usual difference?

Question 8 of 8 +20 XP

An algorithm box contains m←βm+(1−β) gm \leftarrow \beta m + (1 - \beta)\, g. How should you read the arrow?

End of the chamber

Clear this chamber

+50 XPThe Greek AlphabetTypefaces Carry MeaningSubscripts and SuperscriptsHats, Bars and Stars