I am looking at a mathematical expression and could use some help in understanding these notations and also If you could please provide a reference where I could read more about these notations so that I can learn this order of operation and learn how to solve similar problems on my own. This is a computer algorithm for machine learning (in this particular instance):
$\|x\|_1$ is solved by: $$x_1 = \arg\min \|x\|_1 \text{ s.t. } y = Ax$$
I have never seen the large "||" symbols before, so It would be awesome if someone could tell me what they are called, how they work, and where I can get more details on its function.
Thanks everyone!
They are called norm.
$$\|x\|_1 = \sum_{i=1}^n |x_i|$$
The problem that you mentioned can be solved by a linear program.