As you are not providing the MWE, I assume that the below code may help you:
\documentclass{book}
\usepackage{array}
\begin{document}
\newlength{\tabuserlength}%
\setlength{\tabuserlength}{\textwidth}%
\addtolength{\tabuserlength}{-1.5pc}%
\[
Y = \frac{X_{A}}{X_{AB}}
\]
\begin{tabular}{@{}m{1.5pc}p{\tabuserlength}@{}}
$ X_{A}$: & Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book \\
$ X_{AB}$: & Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.
\end{tabular}
\end{document}
Another method tabularx, which suggested by Mico, is better than the previous one, and the code is:
\documentclass{book}
\usepackage{tabularx}
\begin{document}
\[
Y = \frac{X_{A}}{X_{AB}}
\]
\begin{tabularx}{1\linewidth}{@{}lX@{}}
$ X_{A}$: & Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book \\
$ X_{AB}$: & Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.
\end{tabularx}
\end{document}
\usepackage{amsmath}in your preamble? It's required for\text{}. Ormathtoolswould also do I believe – Au101 May 25 '19 at 01:42