答案1
我可以想到 LaTeX 代码中“对和的平均值”的至少两种表示形式。
\documentclass{article}
\usepackage{mathtools} % for "\smashoperator" macro
\begin{document}
\raggedright % optional
The ``mean of sum of pairs'' of $H_{n\times n}$ may be expressed as either
\[
\frac{2}{n(n-1)} \sum_{i=1}^n \sum_{j>i} H_{i,j}
\quad\text{or as}\quad
(n(n-1)/2)^{-1}\smashoperator{\sum_{\substack{i=1,\dots,n\\j>i}}} H_{i,j}\,.
\]
\end{document}
\end{document}