Question:medium

Consider the linear programming problem (LPP):

\[ \text{Maximize } Z = 3x_1 + 5x_2 \]

Subject to:
\[ x_1 + x_3 = 4, \]
\[ 2x_2 + x_4 = 12, \]
\[ 3x_1 + 2x_2 + x_5 = 18, \]
\[ x_1, x_2, x_3, x_4, x_5 \geq 0. \]

Given that \( x_B = (x_3, x_2, x_1)^T \) forms the optimal basis of the LPP with basis matrix \( B \) and respective \( B^{-1} \):

\[ B^{-1} = \begin{bmatrix} \alpha & \beta & -\beta \\ 0 & \gamma & 0 \\ 0 & -\beta & \beta \end{bmatrix} \]

If \( (p, q, r) \) is the optimal solution of the dual of the LPP, then which one of the following is/are TRUE?

Show Hint

For duality in linear programming, the optimal solutions of the primal and dual problems are related. Use the structure of the basis matrix and its inverse to derive the relationships between the primal and dual variables.
Updated On: Feb 2, 2026
  • \( \alpha + 3\beta + 2\gamma = 3 \)
  • \( \alpha - 3\beta + 4\gamma = 1 \)
  • \( p + q + r = \frac{5}{2} \)
  • \( p^2 + q^2 + r^2 = \frac{17}{4} \)
Show Solution

The Correct Option is A, C

Solution and Explanation

The question involves solving a linear programming problem (LPP) using duality and involves matrix algebra. Let's break down the problem step-by-step:

Step 1: Understanding the LPP 

We have the primal problem:

\(Z = 3x_1 + 5x_2\) (Objective)

Subject to: \(x_1 + x_3 = 4\)\(2x_2 + x_4 = 12\)\(3x_1 + 2x_2 + x_5 = 18\)\(x_1, x_2, x_3, x_4, x_5 \geq 0\).

Step 2: Formulate the Dual Problem

The dual problem corresponds to each constraint in the primal. If \( x_B = (x_3, x_2, x_1)^T \) is the basis, the dual variables would be associated with these constraints:

\(p, q, r\) for the constraints respectively.

The dual problem:

Maximize \(W = 4p + 12q + 18r\)

Subject to: 

\[\begin{align*} p + 3r &\leq 3, \\ 2q + 2r &\leq 5, \\ p, q, r &\geq 0 \end{align*}\]

Step 3: Analyze the Given Options

Given that \(B^{-1} = \begin{bmatrix} \alpha & \beta & -\beta \\ 0 & \gamma & 0 \\ 0 & -\beta & \beta \end{bmatrix}\), we can analyze the equations given. The dual vectors operate as coefficients in these:

  • \(\alpha + 3\beta + 2\gamma = 3\): This aligns with the characteristics of \(B^{-1}\cdot C_B = C\), where \(C_B\) are the coefficients of basic variables. So, this is true.
  • \(p + q + r = \frac{5}{2}\): Using the optimal basis, evaluate dual optimal solutions. This result comes from optimal dual value checks, indicating another true statement.
  • The other options: \(\alpha - 3\beta + 4\gamma = 1\) and \(p^2 + q^2 + r^2 = \frac{17}{4}\) do not align with the standard conditions using direct matrix properties of \(B^{-1}\) and dual variable vector calculation.

In conclusion, the correct answers are:

\(\alpha + 3\beta + 2\gamma = 3\)

\(p + q + r = \frac{5}{2}\)

These statements respect structural principles of duality and basis computation.

 

Was this answer helpful?
0