One solution for eliminating the equality constraint from optimisation problems is employing a typical matrix $F$ which its range space is the null space of the matrix used in equality constraint as follows:
The original problem, which is a convex problem: $$ min f_0(x) \\ s.t. f_i(x) \le 0, i =1,...,m \\ Ax = b $$
and the eliminated equality constraint problem:
$$ min f_0(Fz+x_0) \\ s.t. f_i(Fz+x_0) \le 0, i=1,...,m $$
What I've done is that after searching alot I found that I should use the SVD decomposition of the matrix A in equality which is $A=U \Sigma V^T$ and multiply it with $Fz$, and this should be equal to zero:
$$ (A)Fz=(U \Sigma V^T)Fz=0 $$
but I cannot find a property which satisfies the above equation. Does anyone have any opinion?
I have to point out I've seen Eliminating equality constains, but it's just an explanation of employing this technique, and it does not find the matrix $F$.