2

How would I represent the estimated variance symbol in LaTeX: i.e, \Var(\tau) for Var(τ) . But how to write with an inverted V symbol above the Var, basically the symbol for estimated variance

Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036
drk
  • 33

2 Answers2

5

Something like this?

\documentclass{article}

\usepackage{amsmath}
\DeclareMathOperator{\Var}{\widehat{Var}}

\begin{document}
\[
\Var(\tau)
\]
\end{document}

enter image description here

campa
  • 31,130
4

Campa answers your question exactly. The code below shows two alternatives (both of which I prefer).

\documentclass{article}

\usepackage{amssymb}


\begin{document}
\[
 \hat V, \quad \hat{\mathbb{V}} 
\]
\end{document}

enter image description here

JPi
  • 13,595