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
Asked
Active
Viewed 3.6k times
2
Joseph Wright
- 259,911
- 34
- 706
- 1,036
drk
- 33
2 Answers
5
Something like this?
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator{\Var}{\widehat{Var}}
\begin{document}
\[
\Var(\tau)
\]
\end{document}
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}
JPi
- 13,595


\hator\widehat? – sodd Aug 18 '15 at 14:36