I learnt to solve the task below Linear Programmming is employed. I have tried studying texts to better understand what methods to employ out of the following:
$(A) Gomory's-cut$
$(B) Mixed-Gomory's-cut $
$(C) Branch-and-Bound $
But I am finding it difficult to comprehend any of the three and all the example I see are some how more complex and non related.Is there a way to simplify the problem below given the constraint is just $a,b,c,d,e,f\in \{4,2\} $
\begin{align} a+b+c+d+e+f &= 18, \tag{1} \\ b+d &= 4, \tag{2} \\ e+f &= 8, \tag{3} \end{align}
find $a,b,c,d,e,f$ ?