I'm trying to recreate the below image where the defining of the variables is kind of like a horizontal list but without labels. I have tried using tasks and multicols but can't quite figure this out.
\documentclass[11pt, letterpaper]{article}
\usepackage{multicol}
\begin{document}
Consider the following intervals:
\begin{multicols}{2}
A = (1,5] \\
C = [4,7)
\columnbreak
B = [1,4) \\
D = (2,5)
\end{multicols}
\end{document}
Which results in this:





amsmathwith the environments it provides for alignment. – cfr Dec 22 '17 at 04:07\documentclass, includes all relevant\usepackagecommands, ends with\end{document}and compiles without errors, even if it does not produce your desired output. – Sandy G Dec 22 '17 at 04:08