I'm currently solving some Operations Research exercises related to Integer Programming. In one of the solutions of the exercises the author uses the following formula for the objective function:
$\sum_{i=1}^{m} \sum_{j=1}^{n} C_{ij} x_{ij} $
and for the constraints it uses the following:
$\sum_{i=1}^{m} x_{ij} = d_j , (j = 1,2,.., n) $
My question is twofold:
- What is the meaning of the double summation in the objective function?
- Could we use the double summation in the constraint, instead of using this $ (j = 1,2,.., n) $ ?
I hope my question is clear enough. If not I will try to put in different terms. Thank you very much in advance.