I am going to deal with convex optimization problems and I am not a math student so I may have some problems in understanding some topics. As you know, many of the optimization problems lead to a cost function and according to the problem you may have some constraints on data or solution. for example here, as a priori, I am looking for sparse solutions x in the following cost function:
$$ x^* \in \underset{x}{\text{argmin }}\frac{1}{2}||y-Ax||^2+||x||_1 $$
As I read in many articles, they introduce some proximity operator to solve this problem using forward-backward spliting algorithm.
What is the proximity operator in simple words? why do we need it?
some papers say that the proximity operator is somehow the projection, what does it mean?
Checkout my answer to a similar question. It explains what prox operators are, and how they're used in modern convex optimization. It also gives useful references for further reading on the subject. If you still have questions, then we can look at those.