Important Theorems in Linear Programming

Before solving Linear Programming Problems graphically, recall the core results used repeatedly.

Theorem 1 (Corner Point Theorem): Let RR be the feasible region of an LPP and let Z=ax+byZ = ax + by be the objective function. If an optimal value (maximum or minimum) exists, then it occurs at a corner point (vertex) of the feasible region.

Theorem 2 (Bounded Region Theorem): If the feasible region RR is bounded, then both maximum and minimum values of the objective function exist, and each occurs at a corner point of RR.

Rule for Unbounded Regions: If the feasible region is unbounded, then an optimum may or may not exist.

  • To verify whether a calculated maximum MM is the true maximum, check whether the open half-plane ax+by>Max + by > M has any common point with the feasible region. If it does, then no maximum exists.
  • To verify whether a calculated minimum mm is the true minimum, check whether the open half-plane ax+by<max + by < m has any common point with the feasible region. If it does, then no minimum exists.

Example 1: Bounded Maximization

Maximize Z=3x+4yZ = 3x + 4y subject to the constraints x+y4x + y \le 4, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the line x+y=4x + y = 4. It cuts the axes at (4,0)(4, 0) and (0,4)(0, 4).

Step 2: Since the inequality is x+y4x + y \le 4, the feasible region lies on or below this line. Together with x0x \ge 0 and y0y \ge 0, the feasible region is the triangle in the first quadrant.

Step 3: The corner points are: O(0,0),A(4,0),B(0,4).O(0,0), \quad A(4,0), \quad B(0,4).

Step 4: Evaluate the objective function:

  • At O(0,0)O(0,0): Z=3(0)+4(0)=0Z = 3(0) + 4(0) = 0
  • At A(4,0)A(4,0): Z=3(4)+4(0)=12Z = 3(4) + 4(0) = 12
  • At B(0,4)B(0,4): Z=3(0)+4(4)=16Z = 3(0) + 4(4) = 16

Step 5: The greatest value is 16.

Answer: Maximum Z=16Z = 16 at (0,4)(0,4).

Example 2: Bounded Minimization

Minimize Z=3x+4yZ = -3x + 4y subject to x+2y8x + 2y \le 8, 3x+2y123x + 2y \le 12, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines: L1:x+2y=8,L2:3x+2y=12.L_1: x + 2y = 8, \quad L_2: 3x + 2y = 12.

Step 2: Find the intersection point of L1L_1 and L2L_2: Subtract the first equation from the second: (3x+2y)(x+2y)=128(3x+2y) - (x+2y) = 12 - 8 2x=4x=2.2x = 4 \Rightarrow x = 2. Substitute in x+2y=8x + 2y = 8: 2+2y=82y=6y=3.2 + 2y = 8 \Rightarrow 2y = 6 \Rightarrow y = 3. So the intersection point is B(2,3).B(2,3).

Step 3: Since both inequalities are of type \le, and x,y0x, y \ge 0, the feasible region is bounded in the first quadrant. Its corner points are: O(0,0),A(4,0),B(2,3),C(0,4).O(0,0), \quad A(4,0), \quad B(2,3), \quad C(0,4).

Step 4: Evaluate ZZ:

  • At O(0,0)O(0,0): Z=0Z = 0
  • At A(4,0)A(4,0): Z=3(4)+4(0)=12Z = -3(4) + 4(0) = -12
  • At B(2,3)B(2,3): Z=3(2)+4(3)=6+12=6Z = -3(2) + 4(3) = -6 + 12 = 6
  • At C(0,4)C(0,4): Z=16Z = 16

Step 5: The smallest value is 12-12.

Answer: Minimum Z=12Z = -12 at (4,0)(4,0).

Example 3: Unbounded Minimization

Minimize Z=3x+5yZ = 3x + 5y subject to x+3y3x + 3y \ge 3, x+y2x + y \ge 2, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines: x+3y=3,x+y=2.x + 3y = 3, \quad x + y = 2. Since both constraints are \ge, the feasible region lies above both lines in the first quadrant, so it is unbounded.

Step 2: Find the intersection point of the two lines: Subtract: (x+3y)(x+y)=32(x+3y) - (x+y) = 3 - 2 2y=1y=12.2y = 1 \Rightarrow y = \frac{1}{2}. Then x+y=2x=212=32.x + y = 2 \Rightarrow x = 2 - \frac{1}{2} = \frac{3}{2}. So, B(32,12).B\left(\frac{3}{2}, \frac{1}{2}\right).

Step 3: The relevant corner points on the boundary are: A(3,0),B(32,12),C(0,2).A(3,0), \quad B\left(\frac{3}{2},\frac{1}{2}\right), \quad C(0,2).

Step 4: Evaluate ZZ:

  • At A(3,0)A(3,0): Z=3(3)+5(0)=9Z = 3(3) + 5(0) = 9
  • At B(32,12)B\left(\frac{3}{2},\frac{1}{2}\right): Z=3(32)+5(12)=92+52=7Z = 3\left(\frac{3}{2}\right) + 5\left(\frac{1}{2}\right) = \frac{9}{2} + \frac{5}{2} = 7
  • At C(0,2)C(0,2): Z=10Z = 10

Step 5: The smallest value among corner points is 77.

Step 6: Since the region is unbounded, we verify whether the half-plane 3x+5y<73x + 5y < 7 has any common point with the feasible region. It does not. Hence the minimum exists.

Answer: Minimum Z=7Z = 7 at (32,12)\left(\frac{3}{2},\frac{1}{2}\right).

Example 4: Unbounded Maximization

Maximize Z=3x+4yZ = 3x + 4y subject to x0x \ge 0, y0y \ge 0, and x+y5x + y \ge 5.

Solution: Step 1: Draw the line x+y=5.x + y = 5. The feasible region lies in the first quadrant and on/above this line. It is unbounded.

Step 2: The boundary corner points are: A(5,0),B(0,5).A(5,0), \quad B(0,5).

Step 3: Evaluate ZZ:

  • At A(5,0)A(5,0): Z=3(5)+4(0)=15Z = 3(5) + 4(0) = 15
  • At B(0,5)B(0,5): Z=3(0)+4(5)=20Z = 3(0) + 4(5) = 20

Step 4: The largest value among these is 20, but since the feasible region is unbounded, we must check whether larger values are possible.

Step 5: Consider the half-plane 3x+4y>20.3x + 4y > 20. This clearly has common points with the feasible region; for example, (10,10)(10,10) is feasible and gives Z=3(10)+4(10)=70.Z = 3(10) + 4(10) = 70. So ZZ can increase without bound.

Answer: No maximum value exists.

Example 5: Infeasible Problem

Maximize Z=x+yZ = x + y subject to xy1x - y \le -1, x+y0-x + y \le 0, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Rewrite the inequalities: xy1yx+1x - y \le -1 \Rightarrow y \ge x + 1 x+y0yx-x + y \le 0 \Rightarrow y \le x

Step 2: So any feasible point must satisfy both yx+1andyx.y \ge x + 1 \quad \text{and} \quad y \le x. That would imply x+1x,x + 1 \le x, which is impossible.

Step 3: Therefore, there is no common region satisfying all the constraints.

Answer: No feasible solution exists.

Example 6: Multiple Optimal Solutions

Maximize Z=2x+4yZ = 2x + 4y subject to x+2y10x + 2y \le 10, x0x \ge 0, y0y \ge 0.

Solution: Step 1: The feasible region is the triangle bounded by the axes and the line x+2y=10.x + 2y = 10. Its corner points are: O(0,0),A(10,0),B(0,5).O(0,0), \quad A(10,0), \quad B(0,5).

Step 2: Evaluate ZZ:

  • At O(0,0)O(0,0): Z=0Z = 0
  • At A(10,0)A(10,0): Z=2(10)+4(0)=20Z = 2(10) + 4(0) = 20
  • At B(0,5)B(0,5): Z=2(0)+4(5)=20Z = 2(0) + 4(5) = 20

Step 3: Since the maximum value is the same at two adjacent corner points AA and BB, every point on the line segment joining them gives the same maximum value. In fact, Z=2x+4y=2(x+2y),Z = 2x + 4y = 2(x + 2y), and on the boundary line x+2y=10x + 2y = 10, Z=2(10)=20.Z = 2(10) = 20.

Answer: Maximum Z=20Z = 20. Multiple optimal solutions exist on the line segment joining (10,0)(10,0) and (0,5)(0,5).

Example 7: LPP with Two Active Constraints

Maximize Z=4x+yZ = 4x + y subject to x+y50x + y \le 50, 3x+y903x + y \le 90, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines x+y=50,3x+y=90.x + y = 50, \quad 3x + y = 90.

Step 2: Find their intersection: Subtract the first from the second: (3x+y)(x+y)=9050(3x+y) - (x+y) = 90 - 50 2x=40x=20.2x = 40 \Rightarrow x = 20. Then x+y=50y=30.x + y = 50 \Rightarrow y = 30. So, B(20,30).B(20,30).

Step 3: The feasible region in the first quadrant has corner points: O(0,0),A(30,0),B(20,30),C(0,50).O(0,0), \quad A(30,0), \quad B(20,30), \quad C(0,50). Here (30,0)(30,0) is the x-intercept of 3x+y=903x+y=90, and (0,50)(0,50) is the y-intercept of x+y=50x+y=50.

Step 4: Evaluate Z=4x+yZ = 4x + y:

  • At O(0,0)O(0,0): Z=0Z = 0
  • At A(30,0)A(30,0): Z=4(30)+0=120Z = 4(30) + 0 = 120
  • At B(20,30)B(20,30): Z=4(20)+30=110Z = 4(20) + 30 = 110
  • At C(0,50)C(0,50): Z=50Z = 50

Step 5: The maximum value is 120.

Answer: Maximum Z=120Z = 120 at (30,0)(30,0).

Example 8: Simultaneous Maximum and Minimum

Determine the maximum and minimum values of Z=x+2yZ = x + 2y subject to x+2y100x + 2y \ge 100, 2xy02x - y \le 0, 2x+y2002x + y \le 200, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Rewrite the second inequality: 2xy0y2x.2x - y \le 0 \Rightarrow y \ge 2x. So the feasible region is given by: x+2y100,y2x,2x+y200,x,y0.x + 2y \ge 100, \quad y \ge 2x, \quad 2x + y \le 200, \quad x,y \ge 0.

Step 2: Find the intersection points of the boundary lines.

(i) Intersection of x+2y=100x + 2y = 100 and y=2xy = 2x: Substitute y=2xy = 2x: x+2(2x)=1005x=100x=20, y=40.x + 2(2x) = 100 \Rightarrow 5x = 100 \Rightarrow x = 20, \ y = 40. So, A(20,40).A(20,40).

(ii) Intersection of y=2xy = 2x and 2x+y=2002x + y = 200: 2x+2x=2004x=200x=50, y=100.2x + 2x = 200 \Rightarrow 4x = 200 \Rightarrow x = 50, \ y = 100. So, B(50,100).B(50,100).

(iii) Intersection with y-axis: Since x=0x=0 is allowed,

  • From x+2y100x + 2y \ge 100, we get y50y \ge 50.
  • From 2x+y2002x + y \le 200, we get y200y \le 200. So the y-axis portion of the feasible region runs from C(0,50) to D(0,200).C(0,50) \text{ to } D(0,200).

Thus the corner points are: C(0,50),A(20,40),B(50,100),D(0,200).C(0,50), \quad A(20,40), \quad B(50,100), \quad D(0,200).

Step 3: Evaluate Z=x+2yZ = x + 2y:

  • At C(0,50)C(0,50): Z=0+2(50)=100Z = 0 + 2(50) = 100
  • At A(20,40)A(20,40): Z=20+2(40)=100Z = 20 + 2(40) = 100
  • At B(50,100)B(50,100): Z=50+200=250Z = 50 + 200 = 250
  • At D(0,200)D(0,200): Z=400Z = 400

Step 4: Hence,

  • Minimum value is 100, attained at both (0,50)(0,50) and (20,40)(20,40), so in fact it is attained at every point on the segment joining these two points.
  • Maximum value is 400 at (0,200)(0,200).

Answer: Minimum Z=100Z = 100 on the line segment joining (0,50)(0,50) and (20,40)(20,40). Maximum Z=400Z = 400 at (0,200)(0,200).

Example 9: Complex Bounded Region

Maximize Z=3x+2yZ = 3x + 2y subject to x+y5x + y \le 5, x4x \le 4, y6y \le 6, x0x \ge 0, y0y \ge 0.

Solution: Step 1: In the first quadrant, the condition x+y5x + y \le 5 already forces y5.y \le 5. Therefore the extra condition y6y \le 6 is automatically satisfied and is redundant.

Step 2: So we only need to consider: x+y5,x4,x0,y0.x + y \le 5, \quad x \le 4, \quad x \ge 0, \quad y \ge 0. The corner points are: O(0,0),A(4,0),B(4,1),C(0,5).O(0,0), \quad A(4,0), \quad B(4,1), \quad C(0,5).

Step 3: Evaluate Z=3x+2yZ = 3x + 2y:

  • At O(0,0)O(0,0): Z=0Z = 0
  • At A(4,0)A(4,0): Z=12Z = 12
  • At B(4,1)B(4,1): Z=3(4)+2(1)=14Z = 3(4) + 2(1) = 14
  • At C(0,5)C(0,5): Z=10Z = 10

Step 4: The maximum value is 14.

Answer: Maximum Z=14Z = 14 at (4,1)(4,1).

Example 10: Diet Problem Formulation and Solution

Minimize Z=4x+6yZ = 4x + 6y subject to 3x+6y803x + 6y \ge 80, 4x+3y1004x + 3y \ge 100, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines 3x+6y=80and4x+3y=100.3x + 6y = 80 \quad \text{and} \quad 4x + 3y = 100. Since both inequalities are of type \ge, the feasible region is unbounded in the first quadrant.

Step 2: Find the intersection of the two lines: Multiply the second equation by 2: 8x+6y=200.8x + 6y = 200. Subtract the first equation: 5x=120x=24.5x = 120 \Rightarrow x = 24. Then 3(24)+6y=8072+6y=806y=8y=43.3(24) + 6y = 80 \Rightarrow 72 + 6y = 80 \Rightarrow 6y = 8 \Rightarrow y = \frac{4}{3}. So, B(24,43).B\left(24,\frac{4}{3}\right).

Step 3: Find the axis corner points of the feasible region:

  • On x-axis (y=0y=0): 3x80x803,4x100x25.3x \ge 80 \Rightarrow x \ge \frac{80}{3}, \qquad 4x \ge 100 \Rightarrow x \ge 25. Hence the effective x-axis corner is A(25,0).A(25,0).
  • On y-axis (x=0x=0): 6y80y403,3y100y1003.6y \ge 80 \Rightarrow y \ge \frac{40}{3}, \qquad 3y \ge 100 \Rightarrow y \ge \frac{100}{3}. Hence the effective y-axis corner is C(0,1003).C\left(0,\frac{100}{3}\right).

Step 4: Evaluate ZZ:

  • At A(25,0)A(25,0): Z=4(25)+6(0)=100Z = 4(25) + 6(0) = 100
  • At B(24,43)B\left(24,\frac{4}{3}\right): Z=4(24)+6(43)=96+8=104Z = 4(24) + 6\left(\frac{4}{3}\right) = 96 + 8 = 104
  • At C(0,1003)C\left(0,\frac{100}{3}\right): Z=6(1003)=200Z = 6\left(\frac{100}{3}\right) = 200

Step 5: The least value is 100.

Step 6: Since the feasible region is unbounded, check whether the half-plane 4x+6y<1004x + 6y < 100 intersects the feasible region. It does not. So the minimum exists.

Answer: Minimum Z=100Z = 100 at (25,0)(25,0).

Example 11: Manufacturing Problem

Maximize Z=50x+60yZ = 50x + 60y subject to 5x+8y2005x + 8y \le 200, 5x+4y1205x + 4y \le 120, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection of the two boundary lines: 5x+8y=200,5x+4y=120.5x + 8y = 200, \quad 5x + 4y = 120. Subtract: 4y=80y=20.4y = 80 \Rightarrow y = 20. Then 5x+4(20)=1205x=40x=8.5x + 4(20) = 120 \Rightarrow 5x = 40 \Rightarrow x = 8. So, B(8,20).B(8,20).

Step 2: Axis intercepts:

  • For 5x+8y2005x + 8y \le 200, x-intercept is 40 and y-intercept is 25.
  • For 5x+4y1205x + 4y \le 120, x-intercept is 24 and y-intercept is 30. Thus the effective corner points are: O(0,0),A(24,0),B(8,20),C(0,25).O(0,0), \quad A(24,0), \quad B(8,20), \quad C(0,25).

Step 3: Evaluate ZZ:

  • At O(0,0)O(0,0): Z=0Z = 0
  • At A(24,0)A(24,0): Z=50(24)=1200Z = 50(24) = 1200
  • At B(8,20)B(8,20): Z=50(8)+60(20)=400+1200=1600Z = 50(8) + 60(20) = 400 + 1200 = 1600
  • At C(0,25)C(0,25): Z=60(25)=1500Z = 60(25) = 1500

Step 4: Maximum value is 1600.

Answer: Maximum Z=1600Z = 1600 at (8,20)(8,20).

Example 12: Allocation Problem

Minimize Z=6x+5yZ = 6x + 5y subject to 2x+y2802x + y \ge 280, 3x+5y7003x + 5y \ge 700, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection point of the lines: 2x+y=280,3x+5y=700.2x + y = 280, \quad 3x + 5y = 700. Multiply the first by 5: 10x+5y=1400.10x + 5y = 1400. Subtract the second: 7x=700x=100.7x = 700 \Rightarrow x = 100. Then y=2802(100)=80.y = 280 - 2(100) = 80. So, B(100,80).B(100,80).

Step 2: Axis corner points:

  • On x-axis: 2x280x140,2x \ge 280 \Rightarrow x \ge 140, 3x700x7003.3x \ge 700 \Rightarrow x \ge \frac{700}{3}. Hence the effective x-axis corner is A(7003,0).A\left(\frac{700}{3},0\right).
  • On y-axis: y280,5y700y140.y \ge 280, \quad 5y \ge 700 \Rightarrow y \ge 140. Hence the effective y-axis corner is C(0,280).C(0,280).

Step 3: Evaluate ZZ:

  • At A(7003,0)A\left(\frac{700}{3},0\right): Z=6(7003)=1400Z = 6\left(\frac{700}{3}\right) = 1400
  • At B(100,80)B(100,80): Z=6(100)+5(80)=1000Z = 6(100) + 5(80) = 1000
  • At C(0,280)C(0,280): Z=1400Z = 1400

Step 4: The minimum value is 1000.

Step 5: Since the region is unbounded, check whether 6x+5y<10006x + 5y < 1000 intersects the feasible region. It does not.

Answer: Minimum Z=1000Z = 1000 at (100,80)(100,80).

Example 13: Furniture Dealer

Maximize Z=250x+75yZ = 250x + 75y subject to 5x+y1005x + y \le 100, x+y60x + y \le 60, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection of the lines: 5x+y=100,x+y=60.5x + y = 100, \quad x + y = 60. Subtract: 4x=40x=10.4x = 40 \Rightarrow x = 10. Then y=6010=50.y = 60 - 10 = 50. So, B(10,50).B(10,50).

Step 2: Axis intercepts give the other corner points:

  • x-axis corner: A(20,0)A(20,0)
  • y-axis corner: C(0,60)C(0,60) Hence the feasible region has corner points: O(0,0),A(20,0),B(10,50),C(0,60).O(0,0), \quad A(20,0), \quad B(10,50), \quad C(0,60).

Step 3: Evaluate ZZ:

  • At A(20,0)A(20,0): Z=250(20)=5000Z = 250(20) = 5000
  • At B(10,50)B(10,50): Z=250(10)+75(50)=2500+3750=6250Z = 250(10) + 75(50) = 2500 + 3750 = 6250
  • At C(0,60)C(0,60): Z=75(60)=4500Z = 75(60) = 4500

Step 4: Maximum value is 6250.

Answer: Maximum Z=6250Z = 6250 at (10,50)(10,50).

Example 14: Investment Mix

Maximize Z=4500x+5000yZ = 4500x + 5000y subject to x+y250x + y \le 250, 5x+8y14005x + 8y \le 1400, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection of the two lines: x+y=250,5x+8y=1400.x + y = 250, \quad 5x + 8y = 1400. From the first, x=250y.x = 250 - y. Substitute: 5(250y)+8y=14005(250-y) + 8y = 1400 12505y+8y=14001250 - 5y + 8y = 1400 3y=150y=50.3y = 150 \Rightarrow y = 50. Hence x=200.x = 200. So the intersection point is B(200,50).B(200,50).

Step 2: The other boundary corner points are: A(250,0),C(0,175).A(250,0), \quad C(0,175). Together with the origin, the corner points are O(0,0),A(250,0),B(200,50),C(0,175).O(0,0), A(250,0), B(200,50), C(0,175).

Step 3: Evaluate ZZ:

  • At A(250,0)A(250,0): Z=4500(250)=1125000Z = 4500(250) = 1125000
  • At B(200,50)B(200,50): Z=4500(200)+5000(50)=900000+250000=1150000Z = 4500(200) + 5000(50) = 900000 + 250000 = 1150000
  • At C(0,175)C(0,175): Z=5000(175)=875000Z = 5000(175) = 875000

Step 4: Maximum value is 11,50,000.

Answer: Maximum Z=11,50,000Z = 11,50,000 at (200,50)(200,50).

Example 15: Transportation Problem Simplified

Minimize Z=3x+3y+280Z = 3x + 3y + 280 subject to x+y50x + y \le 50, x+y10x + y \ge 10, x20x \le 20, y30y \le 30, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Since Z=3x+3y+280=3(x+y)+280,Z = 3x + 3y + 280 = 3(x+y) + 280, we only need to minimize x+yx+y.

Step 2: The feasible region is bounded by: x+y50,x+y10,x20,y30,x,y0.x+y \le 50, \quad x+y \ge 10, \quad x \le 20, \quad y \le 30, \quad x,y \ge 0. The lower boundary is the line x+y=10.x+y = 10. Within the rectangle 0x200 \le x \le 20, 0y300 \le y \le 30, the feasible segment on this line runs from (10,0) to (0,10).(10,0) \text{ to } (0,10).

Step 3: Since Z=3(x+y)+280Z = 3(x+y)+280, every point on x+y=10x+y=10 gives Z=3(10)+280=310.Z = 3(10) + 280 = 310.

Step 4: Therefore the minimum value is attained at every feasible point on the segment joining (10,0)(10,0) and (0,10)(0,10).

Answer: Minimum Z=310Z = 310 on the line segment joining (10,0)(10,0) and (0,10)(0,10).

Example 16: Advertising Problem

Maximize Z=1000x+4000yZ = 1000x + 4000y subject to 3x+10y603x + 10y \le 60, x5x \ge 5, y2y \ge 2.

Solution: Step 1: The feasible region is bounded by the lines x=5,y=2,3x+10y=60.x = 5, \quad y = 2, \quad 3x + 10y = 60.

Step 2: Find the corner points.

(i) Intersection of x=5x=5 and y=2y=2: A(5,2).A(5,2). Check feasibility: 3(5)+10(2)=3560,3(5) + 10(2) = 35 \le 60, so it is feasible.

(ii) Intersection of x=5x=5 and 3x+10y=603x+10y=60: 15+10y=6010y=45y=4.5.15 + 10y = 60 \Rightarrow 10y = 45 \Rightarrow y = 4.5. So, B(5,4.5).B(5,4.5).

(iii) Intersection of y=2y=2 and 3x+10y=603x+10y=60: 3x+20=603x=40x=403.3x + 20 = 60 \Rightarrow 3x = 40 \Rightarrow x = \frac{40}{3}. So, C(403,2).C\left(\frac{40}{3},2\right).

Step 3: Evaluate ZZ:

  • At A(5,2)A(5,2): Z=1000(5)+4000(2)=13000Z = 1000(5) + 4000(2) = 13000
  • At B(5,4.5)B(5,4.5): Z=1000(5)+4000(4.5)=5000+18000=23000Z = 1000(5) + 4000(4.5) = 5000 + 18000 = 23000
  • At C(403,2)C\left(\frac{40}{3},2\right): Z=1000(403)+8000=400003+8000=64000321333.33Z = 1000\left(\frac{40}{3}\right) + 8000 = \frac{40000}{3} + 8000 = \frac{64000}{3} \approx 21333.33

Step 4: Maximum value is 23000.

Answer: Maximum Z=23000Z = 23000 at (5,4.5)(5,4.5).

Example 17: Airline Optimization

Maximize Z=1000x+600yZ = 1000x + 600y subject to x+y200x + y \le 200, x20x \ge 20, y4xy \ge 4x, y0y \ge 0.

Solution: Step 1: The feasible region is bounded by the lines x=20,y=4x,x+y=200.x = 20, \quad y = 4x, \quad x + y = 200.

Step 2: Find the corner points.

  • Intersection of x=20x=20 and y=4xy=4x: A(20,80)A(20,80)
  • Intersection of x=20x=20 and x+y=200x+y=200: B(20,180)B(20,180)
  • Intersection of y=4xy=4x and x+y=200x+y=200: x+4x=2005x=200x=40,y=160x + 4x = 200 \Rightarrow 5x = 200 \Rightarrow x = 40, y = 160 So, C(40,160).C(40,160).

Step 3: Evaluate ZZ:

  • At A(20,80)A(20,80): Z=1000(20)+600(80)=68000Z = 1000(20) + 600(80) = 68000
  • At B(20,180)B(20,180): Z=1000(20)+600(180)=128000Z = 1000(20) + 600(180) = 128000
  • At C(40,160)C(40,160): Z=1000(40)+600(160)=136000Z = 1000(40) + 600(160) = 136000

Step 4: Maximum value is 136000.

Answer: Maximum Z=136000Z = 136000 at (40,160)(40,160).

Example 18: Tailor Shop Problem

Maximize Z=500x+400yZ = 500x + 400y subject to x+2y80x + 2y \le 80, 3x+y1203x + y \le 120, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection of the two lines: x+2y=80,3x+y=120.x + 2y = 80, \quad 3x + y = 120. From the first, x=802y.x = 80 - 2y. Substitute into the second: 3(802y)+y=1203(80 - 2y) + y = 120 2406y+y=120240 - 6y + y = 120 5y=120y=24.-5y = -120 \Rightarrow y = 24. Then x=8048=32.x = 80 - 48 = 32. So, B(32,24).B(32,24).

Step 2: Axis corner points are: A(40,0),C(0,40).A(40,0), \quad C(0,40). Hence the feasible region has corner points: O(0,0),A(40,0),B(32,24),C(0,40).O(0,0), A(40,0), B(32,24), C(0,40).

Step 3: Evaluate ZZ:

  • At A(40,0)A(40,0): Z=500(40)=20000Z = 500(40) = 20000
  • At B(32,24)B(32,24): Z=500(32)+400(24)=16000+9600=25600Z = 500(32) + 400(24) = 16000 + 9600 = 25600
  • At C(0,40)C(0,40): Z=400(40)=16000Z = 400(40) = 16000

Step 4: Maximum value is 25600.

Answer: Maximum Z=25600Z = 25600 at (32,24)(32,24).

Example 19: Finding Parameter Relation for Multiple Optima

Let Z=px+qyZ = px + qy, where p,q>0p, q > 0. Find the condition on pp and qq such that the maximum of ZZ occurs at both (15,15)(15, 15) and (0,20)(0, 20).

Solution: Step 1: If the same optimal value occurs at both points, then the objective function must have equal value at the two points.

Step 2: At (15,15)(15,15): Z1=15p+15q.Z_1 = 15p + 15q. At (0,20)(0,20): Z2=20q.Z_2 = 20q.

Step 3: Equate them: 15p+15q=20q15p + 15q = 20q 15p=5q15p = 5q 3p=q.3p = q.

Answer: The required condition is q=3p.q = 3p.

Example 20: Minimum of Objective Function

Minimize Z=200x+500yZ = 200x + 500y subject to x+2y10x + 2y \ge 10, 3x+4y243x + 4y \le 24, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines x+2y=10,3x+4y=24.x + 2y = 10, \quad 3x + 4y = 24. The feasible region lies above the first line, below the second line, and in the first quadrant.

Step 2: Find the intersection point: From x+2y=103x+6y=30.x + 2y = 10 \Rightarrow 3x + 6y = 30. Subtract 3x+4y=243x + 4y = 24: 2y=6y=3.2y = 6 \Rightarrow y = 3. Then x+2(3)=10x=4.x + 2(3) = 10 \Rightarrow x = 4. So, B(4,3).B(4,3).

Step 3: Find the other boundary corner points on the y-axis:

  • On x+2y=10x + 2y = 10, y-intercept is (0,5)(0,5)
  • On 3x+4y=243x + 4y = 24, y-intercept is (0,6)(0,6) Both satisfy x0x \ge 0 and define the vertical side of the feasible region. Thus the corner points are: A(0,5),B(4,3),C(0,6).A(0,5), \quad B(4,3), \quad C(0,6).

Step 4: Evaluate ZZ:

  • At A(0,5)A(0,5): Z=200(0)+500(5)=2500Z = 200(0) + 500(5) = 2500
  • At B(4,3)B(4,3): Z=200(4)+500(3)=800+1500=2300Z = 200(4) + 500(3) = 800 + 1500 = 2300
  • At C(0,6)C(0,6): Z=3000Z = 3000

Step 5: Minimum value is 2300.

Answer: Minimum Z=2300Z = 2300 at (4,3)(4,3).

JEE Main Standard

Example 21: Maximize over a Bounded Region

Maximize Z=3x+5yZ = 3x + 5y subject to x+4y24x + 4y \le 24, 3x+y213x + y \le 21, x+y9x + y \le 9, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersections of the boundary lines.

(i) Intersection of x+4y=24x + 4y = 24 and x+y=9x + y = 9: Subtract: 3y=15y=5,x=4.3y = 15 \Rightarrow y = 5, \quad x = 4. So, P(4,5).P(4,5). Check in 3x+y213x + y \le 21: 3(4)+5=1721,3(4) + 5 = 17 \le 21, so it is feasible.

(ii) Intersection of 3x+y=213x + y = 21 and x+y=9x + y = 9: Subtract: 2x=12x=6,y=3.2x = 12 \Rightarrow x = 6, \quad y = 3. So, Q(6,3).Q(6,3). Check in x+4y24x + 4y \le 24: 6+12=1824,6 + 12 = 18 \le 24, so it is feasible.

Step 2: Axis intercepts give the remaining corner points:

  • x-axis corner: (7,0)(7,0) from 3x+y213x+y\le21
  • y-axis corner: (0,6)(0,6) from x+4y24x+4y\le24 Hence the corner points are: O(0,0),A(7,0),Q(6,3),P(4,5),C(0,6).O(0,0), \quad A(7,0), \quad Q(6,3), \quad P(4,5), \quad C(0,6).

Step 3: Evaluate ZZ:

  • At A(7,0)A(7,0): Z=21Z = 21
  • At Q(6,3)Q(6,3): Z=3(6)+5(3)=33Z = 3(6) + 5(3) = 33
  • At P(4,5)P(4,5): Z=3(4)+5(5)=12+25=37Z = 3(4) + 5(5) = 12 + 25 = 37
  • At C(0,6)C(0,6): Z=30Z = 30

Step 4: Maximum value is 37.

Answer: Maximum Z=37Z = 37 at (4,5)(4,5).

Example 22: Triangular Region

Find the maximum value of Z=2x+3yZ = 2x + 3y in the region bounded by y0y \ge 0, yxy \le x, and x+y2x + y \le 2.

Solution: Step 1: The bounding lines are: y=0,y=x,x+y=2.y = 0, \quad y = x, \quad x + y = 2.

Step 2: Find the corner points:

  • Intersection of y=0y=0 and y=xy=x: (0,0)(0,0)
  • Intersection of y=0y=0 and x+y=2x+y=2: (2,0)(2,0)
  • Intersection of y=xy=x and x+y=2x+y=2: x+x=2x=1,y=1.x+x=2 \Rightarrow x=1, y=1. So, (1,1).(1,1).

Step 3: Evaluate ZZ:

  • At (0,0)(0,0): Z=0Z = 0
  • At (2,0)(2,0): Z=4Z = 4
  • At (1,1)(1,1): Z=2+3=5Z = 2 + 3 = 5

Step 4: Maximum value is 5.

Answer: Maximum Z=5Z = 5 at (1,1)(1,1).

Example 23: Modulus Constraint

Find the maximum value of Z=2x+yZ = 2x + y subject to the feasible region x+y1|x| + |y| \le 1.

Solution: Step 1: The inequality x+y1|x| + |y| \le 1 defines a diamond-shaped region (a square rotated by 4545^\circ) with corner points: (1,0),(0,1),(1,0),(0,1).(1,0), \quad (0,1), \quad (-1,0), \quad (0,-1).

Step 2: Evaluate Z=2x+yZ = 2x + y at these points:

  • At (1,0)(1,0): Z=2Z = 2
  • At (0,1)(0,1): Z=1Z = 1
  • At (1,0)(-1,0): Z=2Z = -2
  • At (0,1)(0,-1): Z=1Z = -1

Step 3: Maximum value is 2.

Answer: Maximum Z=2Z = 2 at (1,0)(1,0).

Example 24: Minimum Point in an Unbounded Region

Find the minimum point for Z=2x+3yZ = 2x + 3y over the region x0,y0,x+y4,2x+y5x \ge 0, y \ge 0, x + y \ge 4, 2x + y \ge 5.

Solution: Step 1: Draw the lines x+y=4,2x+y=5.x + y = 4, \quad 2x + y = 5. The feasible region is in the first quadrant and above both lines, so it is unbounded.

Step 2: Find the intersection of the two lines: Subtract: (2x+y)(x+y)=54x=1.(2x+y) - (x+y) = 5 - 4 \Rightarrow x = 1. Then y=3.y = 3. So one corner point is B(1,3).B(1,3).

Step 3: The other boundary corner points are found on the axes:

  • On x-axis (y=0y=0): x4,2x5.x \ge 4, \quad 2x \ge 5. Effective point is A(4,0).A(4,0).
  • On y-axis (x=0x=0): y4,y5.y \ge 4, \quad y \ge 5. Effective point is C(0,5).C(0,5).

So the relevant corner points are: A(4,0),B(1,3),C(0,5).A(4,0), \quad B(1,3), \quad C(0,5).

Step 4: Evaluate ZZ:

  • At A(4,0)A(4,0): Z=2(4)+3(0)=8Z = 2(4) + 3(0) = 8
  • At B(1,3)B(1,3): Z=2+9=11Z = 2 + 9 = 11
  • At C(0,5)C(0,5): Z=15Z = 15

Step 5: The smallest value is 8.

Step 6: Since the region is unbounded, check whether the half-plane 2x+3y<82x + 3y < 8 intersects the feasible region. It does not.

Answer: Minimum Z=8Z = 8 at (4,0)(4,0).

Example 25: Identifying Multiple Optimal Solutions

Maximize Z=x+2yZ = x + 2y subject to 2x+y42x + y \le 4, x+2y4x + 2y \le 4, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Find the intersection of the lines: 2x+y=4,x+2y=4.2x + y = 4, \quad x + 2y = 4. Multiply the second by 2: 2x+4y=8.2x + 4y = 8. Subtract the first: 3y=4y=43.3y = 4 \Rightarrow y = \frac{4}{3}. Then x+2(43)=4x=43.x + 2\left(\frac{4}{3}\right) = 4 \Rightarrow x = \frac{4}{3}. So the intersection point is (43,43).\left(\frac{4}{3},\frac{4}{3}\right).

Step 2: The other axis corner points are: (2,0)and(0,2).(2,0) \quad \text{and} \quad (0,2). Thus the corner points are: O(0,0),A(2,0),B(43,43),C(0,2).O(0,0), \quad A(2,0), \quad B\left(\frac{4}{3},\frac{4}{3}\right), \quad C(0,2).

Step 3: Evaluate Z=x+2yZ = x + 2y:

  • At A(2,0)A(2,0): Z=2Z = 2
  • At B(43,43)B\left(\frac{4}{3},\frac{4}{3}\right): Z=43+2(43)=4Z = \frac{4}{3} + 2\left(\frac{4}{3}\right) = 4
  • At C(0,2)C(0,2): Z=4Z = 4

Step 4: Since the maximum value 4 occurs at two adjacent corner points BB and CC, it occurs at every point on the segment joining them.

Answer: Maximum Z=4Z = 4, attained at every point on the line segment joining (43,43)\left(\frac{4}{3},\frac{4}{3}\right) and (0,2)(0,2).

Example 26: Minimum of Objective Function

Minimize Z=5x+7yZ = 5x + 7y over x+y10x + y \ge 10, 3x+y153x + y \ge 15, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the lines: x+y=10,3x+y=15.x + y = 10, \quad 3x + y = 15. The feasible region lies above both lines in the first quadrant, so it is unbounded.

Step 2: Find the intersection point: Subtract the first equation from the second: 2x=5x=2.5.2x = 5 \Rightarrow x = 2.5. Then y=102.5=7.5.y = 10 - 2.5 = 7.5. So, B(2.5,7.5).B(2.5,7.5).

Step 3: The boundary corner points are:

  • On x-axis: effective point is (10,0)(10,0)
  • On y-axis: effective point is (0,15)(0,15) Thus the relevant corner points are: A(10,0),B(2.5,7.5),C(0,15).A(10,0), \quad B(2.5,7.5), \quad C(0,15).

Step 4: Evaluate ZZ:

  • At A(10,0)A(10,0): Z=50Z = 50
  • At B(2.5,7.5)B(2.5,7.5): Z=5(2.5)+7(7.5)=12.5+52.5=65Z = 5(2.5) + 7(7.5) = 12.5 + 52.5 = 65
  • At C(0,15)C(0,15): Z=105Z = 105

Step 5: The minimum value is 50.

Step 6: Since the region is unbounded, check whether 5x+7y<505x + 7y < 50 intersects the feasible region. It does not.

Answer: Minimum Z=50Z = 50 at (10,0)(10,0).

Example 27: Maximum on a Polygon

Find the maximum value of Z=4x+5yZ = 4x + 5y on the region defined by 2x+3y122x + 3y \le 12, x4x \le 4, y3y \le 3, x0x \ge 0, y0y \ge 0.

Solution: Step 1: Draw the boundary lines 2x+3y=12,x=4,y=3.2x + 3y = 12, \quad x = 4, \quad y = 3.

Step 2: Find the corner points of the feasible region:

  • (0,0)(0,0)
  • (4,0)(4,0)
  • Intersection of x=4x=4 and 2x+3y=122x+3y=12: 8+3y=12y=43.8 + 3y = 12 \Rightarrow y = \frac{4}{3}. So point is (4,43).\left(4,\frac{4}{3}\right).
  • Intersection of y=3y=3 and 2x+3y=122x+3y=12: 2x+9=12x=32.2x + 9 = 12 \Rightarrow x = \frac{3}{2}. So point is (32,3).\left(\frac{3}{2},3\right).
  • (0,3)(0,3)

Step 3: Evaluate ZZ:

  • At (4,0)(4,0): Z=16Z = 16
  • At (4,43)\left(4,\frac{4}{3}\right): Z=4(4)+5(43)=16+203=683Z = 4(4) + 5\left(\frac{4}{3}\right) = 16 + \frac{20}{3} = \frac{68}{3}
  • At (32,3)\left(\frac{3}{2},3\right): Z=4(32)+15=6+15=21Z = 4\left(\frac{3}{2}\right) + 15 = 6 + 15 = 21
  • At (0,3)(0,3): Z=15Z = 15

Step 4: Maximum value is 683.\frac{68}{3}.

Answer: Maximum Z=683Z = \frac{68}{3} at (4,43)\left(4,\frac{4}{3}\right).

Example 28: Number of Corner Points

Find the number of corner points for the feasible region defined by x0x \ge 0, y0y \ge 0, x+y6x + y \le 6, 3x+5y153x + 5y \le 15.

Solution: Step 1: Consider the two lines: x+y=6,3x+5y=15.x + y = 6, \quad 3x + 5y = 15. Find their intersection: Multiply the first by 3: 3x+3y=18.3x + 3y = 18. Subtract from the second: 2y=3y=32.2y = -3 \Rightarrow y = -\frac{3}{2}. This lies outside the first quadrant, so the two boundaries do not meet inside the feasible region.

Step 2: Compare the intercepts in the first quadrant.

  • For x+y6x+y \le 6, intercepts are (6,0)(6,0) and (0,6)(0,6).
  • For 3x+5y153x+5y \le 15, intercepts are (5,0)(5,0) and (0,3)(0,3). The second line lies entirely closer to the origin in the first quadrant, so it alone determines the effective upper boundary.

Step 3: Therefore the feasible region is the triangle bounded by the axes and the line 3x+5y=153x+5y=15. Its corner points are: (0,0),(5,0),(0,3).(0,0), \quad (5,0), \quad (0,3).

Answer: There are 3 corner points.

Example 29: Evaluating Extreme Constraints

Maximize Z=3x+4yZ = 3x + 4y subject to x0x \ge 0, y0y \ge 0, x+y5x + y \le 5, x4x \le 4, y4y \le 4.

Solution: Step 1: Draw the lines x+y=5,x=4,y=4.x + y = 5, \quad x = 4, \quad y = 4. The feasible region lies in the first quadrant and below all these boundaries.

Step 2: The corner points are: O(0,0),A(4,0),B(4,1),C(1,4),D(0,4).O(0,0), \quad A(4,0), \quad B(4,1), \quad C(1,4), \quad D(0,4). Here:

  • B(4,1)B(4,1) comes from x=4x=4 and x+y=5x+y=5
  • C(1,4)C(1,4) comes from y=4y=4 and x+y=5x+y=5

Step 3: Evaluate ZZ:

  • At A(4,0)A(4,0): Z=12Z = 12
  • At B(4,1)B(4,1): Z=3(4)+4(1)=16Z = 3(4) + 4(1) = 16
  • At C(1,4)C(1,4): Z=3(1)+4(4)=19Z = 3(1) + 4(4) = 19
  • At D(0,4)D(0,4): Z=16Z = 16

Step 4: Maximum value is 19.

Answer: Maximum Z=19Z = 19 at (1,4)(1,4).