The following text derived from book Convex Optimization, by Boyd, page 143.
For a convex problem the equality constraints must be linear, i.e., of the form $Ax = b$. In this case they can be eliminated by finding a particular solution $x_0$ of $Ax = b$, and a matrix $F$ whose range is the nullspace of $A$, which results in the problem:
\begin{equation*} \begin{aligned} & \underset{z}{\text{minimize}} & & f_0(Fz + x_0) \\ & \text{subject to} & & f_i(Fz + x_0) \leq 0, \; i = 1, \ldots, m. \end{aligned} \end{equation*}
my question:
Which is the subspace logic in $Fz+x_0$ that makes this problem formulation equivalent to a convex optimization problem of the standard form with the affine equality constraints?
Thank you!