1. Special Case 1 — Unbounded Feasible Region

An unbounded feasible region extends infinitely in at least one direction. This happens when all constraints are of the ≥ type (or a mix where the region is not enclosed).

Does the Optimal Value Exist?

For an unbounded region:

  • The minimum of a maximisation problem (or maximum of a minimisation problem) always exists at a corner point — just evaluate and compare.
  • The maximum for maximisation (or minimum for minimisation) may not exist — if the feasible region extends infinitely in the direction of increasing Z, there is no finite maximum.

The Open Half-Plane Test (for Unbounded Regions)

Let M = value of Z at the "best" corner point.

  1. Draw the open half-plane defined by Z > M (for maximisation) or Z < M (for minimisation).
  2. If this open half-plane has no point in common with the feasible region → M is the optimal value.
  3. If it does share points with the feasible region → no finite optimal value exists.

Example 1 — Unbounded, Minimum Exists

Minimise Z = x + 2y subject to: x + y ≥ 1, x ≥ 0, y ≥ 0.

Corner points: (1, 0) and (0, 1).

PointZ = x + 2y
(1, 0)1 ← Minimum
(0, 1)2

Open half-plane Z < 1: x + 2y < 1. Does it overlap with feasible region (x+y ≥ 1)? The point (0.5, 0) satisfies x+2y=0.5 < 1 but x+y=0.5 < 1 → NOT in feasible region. No overlap → Minimum Z = 1 at (1, 0).

Example 2 — Unbounded, No Maximum

Maximise Z = 3x + 2y subject to: x + y ≥ 1, 2x + y ≥ 3, x ≥ 0, y ≥ 0.

Corner points: (0, 3) and (2, 0), both giving Z = 6.

Open half-plane Z > 6: 3x + 2y > 6. Take (3, 0): 3(3)+2(0)=9 > 6. Is (3,0) feasible? x+y=3≥1 ✓, 2x+y=6≥3 ✓. Yes — it is in the feasible region!

So the open half-plane Z > 6 shares points with the feasible region → No finite maximum exists.

2. Special Case 2 — Infeasible LP (No Feasible Region)

An LP is infeasible if no point satisfies all constraints simultaneously. The feasible region is empty.

When does this happen? Typically when constraints directly contradict each other.

Example: x + y ≤ 4 AND x + y ≥ 6, x ≥ 0, y ≥ 0.

No point can simultaneously satisfy x+y ≤ 4 and x+y ≥ 6 (since no number is both ≤4 and ≥6). The feasible region is empty → No solution.

Graphically: The shaded regions for the two constraints don't overlap at all.

3. Special Case 3 — Multiple Optimal Solutions

Multiple (infinite) optimal solutions occur when the objective function Z = ax + by has the same slope as one of the boundary constraints of the feasible region, and the optimal value is attained along that entire edge.

How to Identify

If two adjacent corner points give the same value of Z, then every point on the line segment connecting them is also optimal.

Example

Maximise Z = 2x + 4y subject to: x + 2y ≤ 6, x ≥ 0, y ≥ 0.

Corner points: O(0,0), A(6,0), B(0,3).

PointZ = 2x + 4y
(0, 0)0
(6, 0)12
(0, 3)12

Z = 12 at both A(6,0) and B(0,3). The slope of Z = 2x+4y is −1/2, same as the constraint line x+2y=6. So every point on segment AB is optimal.

Conclusion: Maximum Z = 12; infinitely many optimal solutions on segment from (6,0) to (0,3).

4. Summary of All Cases

CaseFeasible RegionOptimal Solution
Standard boundedEnclosed polygonBoth max and min exist; occur at corner points
Unbounded — optimal existsExtends to infinityMin (for min problems) or max (for max problems) may exist at a corner; verify using open half-plane test
Unbounded — no optimalExtends to infinityOpen half-plane test confirms no finite optimal value
InfeasibleEmpty (no region)No solution at all
Multiple optimalBounded or unboundedZ takes same value at two adjacent corners → entire edge is optimal

5. Application Problems — Manufacturing

Worked Example (JEE Main / Board)

A company manufactures desks and chairs. Each desk requires 3 hours of carpentry and 1 hour of painting; each chair requires 1 hour of carpentry and 2 hours of painting. Carpentry available: 90 hours; painting available: 40 hours. Profit: ₹75 per desk, ₹50 per chair. Maximise profit.

Let x = desks, y = chairs. Maximise Z = 75x + 50y.

Constraints: 3x + y ≤ 90, x + 2y ≤ 40, x ≥ 0, y ≥ 0.

Corner points: O(0,0), A(30,0), B(?,?), C(0,20).

Intersection of 3x+y=90 and x+2y=40: multiply second by 3: 3x+6y=120; subtract first: 5y=30 → y=6, x=28. B=(28,6).

Corner Point Profit Z=75x+50y
O(0,0) ₹0
A(30,0) ₹2250
B(28,6) 75(28)+50(6)=2100+300= ₹2400 ← Maximum
C(0,20) ₹1000

Maximum profit = ₹2400 by making 28 desks and 6 chairs.

6. Application Problems — Transportation / Resource Allocation

Worked Example (Board)

A farmer has 8 hectares of land to plant wheat and rice. Wheat needs 2 workers per hectare; rice needs 1 worker per hectare. Total workers available: 10. Profit: ₹6000 per hectare of wheat, ₹5000 per hectare of rice. Maximise profit.

Let x = hectares of wheat, y = hectares of rice.

Maximise Z = 6000x + 5000y.

Constraints: x + y ≤ 8 (land), 2x + y ≤ 10 (workers), x ≥ 0, y ≥ 0.

Intersection of x+y=8 and 2x+y=10: subtract → x=2, y=6. Corner B=(2,6).

Corner points: O(0,0), A(5,0), B(2,6), C(0,8).

PointZ = 6000x + 5000y
(0, 0)₹0
(5, 0)₹30,000
(2, 6)12,000 + 30,000 = ₹42,000 ← Maximum
(0, 8)₹40,000

Maximum profit = ₹42,000 by planting 2 ha wheat and 6 ha rice.