Skip to main content
1 of 3
Steven B. Segletes
  • 245.1k
  • 13
  • 349
  • 635

This can be improved, but first cut is

\documentclass{article}
\usepackage{scalerel}

\newcommand\triad{%
\let\savearraystretch\arraystretch
\renewcommand\arraystretch{0}
\begin{array}{c}
\rule{.1ex}{.8ex}\    \stretchto{
    \scalerel*[\widthof{=}]{\wedge}
    {\rule{1ex}{3ex}}%
}{0.5ex}\    \vphantom{\rule{1ex}{.01ex}}
\end{array}
\let\arraystretch\savearraystretch
}

\begin{document}

$x^2 \triad \begin{array}{c}a\\b\\c\end{array}$

\end{document}

enter image description here

Steven B. Segletes
  • 245.1k
  • 13
  • 349
  • 635