For a series of variables, I have got the constrain functions: $ax_{1}+bx_{2}+cx_{3}+dx_{4}=0$ $0 \le x_{1}, x_{2}, x_{3}, x_{4} \le 1$
Now I want to find the solution that the minimum value of $x_{1}, x_{2}, x_{3}, x_{4}$ is the greatest number in all solutions. For example, I have the following 4 solutions:
$$ \begin{matrix} x_{1} & x_{2} & x_{3} & x_{4} \\ 0.3 & 0.03 & 0.03 & 0.3 \\ 0.35 & 0 & 0 & 0.35 \\ 0.2 & 1 & 1 & 0.2 \\ 0.9 & 1 & 1 & 0 \\ \end{matrix} $$
In all the above solutions, the third one is what I want to find. So how can I compile the objective function for such optimization problem? Thanks!