[Tex/LaTex] Putting the symbol hat in math mode in LaTeX

math-modesymbols

enter image description here

How to put the hat in the above symbol in LaTeX?

Best Answer

I understand, that it is like some kind of Fourier transform of the whole expression. An alternative version added.

\documentclass{article}

\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}

\newcommand{\Sel}{\operatorname{Sel}}

\[
\Sel_{E}^{\Sigma_0}(\mathbb{Q}_\infty)_p{}\widehat{}
\]

But probably better

\[
(\Sel_{E}^{\Sigma_0}(\mathbb{Q}_\infty)_p)\,\widehat{}
\]

\end{document}

enter image description here

Related Question