While trying to model the relation between offers and exchanges in economics, I reached the point where I need to solve the following:
Given a fat real matrix $M$ (more columns than rows), find all vectors $x \geq 0$ such that $Mx \leq 0$. The inequalities apply to all elements.
Since the scale of the solution doesn't matter, I guess I could study just the positive region of the unit sphere (i.e., $x^\top x = 1, x \geq 0$).
My first thought was to separate $M$ into two parts: $M^+$ containing the positive elements and $M^-$ containing the negative elements: $M = M^+ - M^-$. So now the inequation is $M^+x \leq M^-x$. But it doesn't look like progress...
Any idea how to solve the inequation?