My original code was something like this:
\documentclass{article} \usepackage{amsmath} \begin{document} \noindent Find the number of solutions that satisfy the following system of\\ equations, given that \( x < 0 \): \vspace{-5pt} % Reduce space before cases %\hspace{-10pt} % Shift equation left by 5cm \[ \begin{cases} x^2 - ax + 2014 = 0 \\ x^2 - 2014x + a = 0 \end{cases} \] \vspace{-5pt} % Reduce space after cases \begin{itemize} \setlength{\itemsep}{0pt} % Reduce space between items \item[A.] 0 \item[B.] 1 \item[C.] 2 \item[D.] 3 \item[E.] 4 \end{itemize} \end{document} when I remove the % before the \hspace, to make it run, the \vspace somehow doesn't work and the \hspace as well. I want to reduce the vertical space of the equation and move it a little bit to the left so it would look symmetrical as possible. T.I.A
