Supongamos que tenemos un programa lineal entero de la forma
$\begin{equation*} \begin{aligned} & \text{minimize} & & \sum\limits_{i=1}^n \sum\limits_{j=1}^n c_{ij}x_{ij}\\ & \text{s.t.} & & \mathbf{A}\mathbf{x}\geq \mathbf{b} \\ &&&\mathbf{dx}=\mathbf{g} \\ &&& x_{ij}\geq 0, x_{ij} \text{ integer} \end{aligned} \end{equation*} $
¿Cómo podemos formular la matriz de restricciones para este problema? Mi idea es convertir todas las restricciones en restricciones de igualdad añadiendo variables de holgura, y luego tomar los coeficientes de cada $x_{ij}$ (por ejemplo $a_{ij}$ , $d_{ij}$ ) y ponerlo en la matriz, que parece:
$\begin{bmatrix} a_{11} \ \ \ \ \ \ \ \ a_{12} \ \dots \ \ \ a_{1n}\\ \vdots \\ a_{n1} \ \ \ \ \ \ \ a_{n2} \ \dots \ \ \ a_{nn}\\ d_{n+1, 1} \ d_{n+1,2} \ \dots \ d_{n+1,n} \end{bmatrix} $
¿Tengo razón en esto? ¡Alguna aclaración sería genial!