These are my math equations.

To enhance readability, I'd like the third column to be aligned around the + sign;
that is,
- I wish to place some horizontal blank in front of
$n\mathbf{A}_0$(not behind it) in the first line so that there's no blank between$n\mathbf{A}_0$and+sign. - And the same thing for the third line with the space behind
$\frac{n 2}\mathbf{A}_2$.
\documentclass[10pt]{document}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{mathtools}
\newcommand{\Abf}{\ensuremath{\mathbf A}}
\begin{document}
\begin{subequations}
\begin{alignat}{3}
\Abf\Abf_1 &= b_0\Abf_0 + c_2\Abf_2 = n\Abf_0 & &+ {\frac n 2}\Abf_2 \\
\Abf\Abf_2 &= b_1\Abf_1 + c_3\Abf_3 = (n-1)\Abf_1 & &+ (n-1)\Abf_3 \\
\Abf\Abf_3 &= b_2\Abf_2 + c_4\Abf_4 = {\frac n 2}\Abf_2 & &+ n\Abf_4
\end{alignat}
\end{subequations}
\end{document}

