I have two equations:
\begin{equation}
\begin{cases}
\begin{aligned}
a_x &= - \sin \alpha \cos \beta \\
a_y &= \cos \alpha \cos \beta
\end{aligned}
\end{cases}
\end{equation}
This works very nicely. However I would find the result prettier if there were a white space under the negative sign. That is, not like this:
a_x = - sin ...
a_y = cos ...
but rather like this :
a_x = - sin ...
a_y = cos ...
So, white space problem or alignment problem? I could just place a whitespace there, like \. or \,, but I do not know how wide the negative sign is. I cannot put more & in my lines because that makes aligned think I have many equations on the same line.
What are the best practices here?