I have a problem which can be written in two ways. A simple example:
More variables, less constraints:
$ min\ x\\ s.t.\ x = \sum_{i} b_iy_i\\ m_1 \leq x \leq M_1\\ m_2 \leq y_i \leq M_2 $
Less variables, more constraints:
$ min\ \sum_{i} b_iy_i\\ s.t.\ m_1 \leq \sum_{i} b_iy_i \leq M_1\\ m_2 \leq y_i \leq M_2 $
The second model only replaces $x$, the result is obviously the same. My question is, will this tradeoff between constraints and variables affect performance of solvers? Will one of these problems be solved faster than the other?