Is it be possible to display a table with both typeset math expressions and verbatim renderings the corresponding input for those expressions?
For example, something like the first two lines of output shown below, but within a tabular or align environment. (The last two lines of the output give almost what I want, but of course lack display of /.)
The source for the above is:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\noindent
$X \vee Y$ \qquad \verb!X \vee Y!
\\
$X \wedge Y$ \qquad \verb!X \wedge Y!
\noindent
\begin{align*}
X \wedge Y &\qquad \texttt{X wedge Y}
\\
X \vee Y &\qquad \texttt{X vee Y}
\end{align*}
\end{document}
Of course I am aware of how to do this when just text is involved, as considered, e.g., in: How use fancyvrb to show both result and verbatim text?.
A mathemartical aside
Somewhat confusingly, the symbol \vee is used in topology to denote the wedge sum, whereas the symbol \wedge is not (it's used for the smash product).



\texttt{X \char92 wedge Y}– Steven B. Segletes Apr 09 '20 at 19:49\texttt{X \string\wedge\ Y}and\texttt{X \string\vee\ Y}. – Werner Apr 09 '20 at 19:49\stringcommand! – murray Apr 09 '20 at 19:58align*absorbs the text up to\end{align*}as the argument to a macro, so\verbis not allowed. – egreg Apr 09 '20 at 20:00