[Tex/LaTex] What symbol is this (sample space)

symbols

What is this symbol, pictured below, which is used to denote sample space in probability theory, according to one textbook (UK's A-Level in Statistics from Edexcel).

And how to typeset it in Latex?

enter image description here

Best Answer

I think \usepackage[cal=boondoxo]{mathalfa} and \mathcal{E} might come closest to the symbol you are after. This font is freely available.

enter image description here

\documentclass{article}
\usepackage[cal=boondoxo]{mathalfa}
\begin{document}
\[ \mathcal{E} \]
\end{document}

However, there is a font mathpi which is a commercial font (see the mathalfa documentation for more information). This I believe is exactly the same font as in your picture.

enter image description here

(from page 7 of the mathalfa documentation)

Related Question