PYQ Vault

MHT-CET Maths · Linear Programming

Corner-Point Method — Maximum and Minimum of the Objective Function

A linear objective over a polygon takes its maximum and minimum at corners: list the vertices, evaluate Z at each, and read off the largest and smallest.

Why this matters

16 PYQs and not one HARD — the chapter's largest page and the cheapest two marks in the subject. Half the stems give the constraints, half give the figure with the corners labelled; either way the work is four or five substitutions. One 2024 figure stem carries an official key that its own working contradicts (19.8 marked where the corner gives 19.5); it is kept as printed and taught as a trap, and it is the only irregularity in sixteen questions.

Concept 1 of 4

The Corner-Point Theorem: Evaluate Z at Every Vertex

Intuition

Z=ax+byZ = ax + by is constant along parallel lines; sliding that line across a polygon, the last point it touches is a corner. So the optimum is at a vertex, and a bounded region needs only its vertices checked.

Definition

  • Z=3x+5yZ = 3x + 5y with 3x+2y≤183x + 2y \le 18, x≤4x \le 4, y≤6y \le 6: vertices (0,0)(0,0), (4,0)(4,0), (4,3)(4,3), (2,6)(2,6), (0,6)(0,6); Z=0,12,27,36,30Z = 0, 12, 27, 36, 30. Maximum 3636 at (2,6)(2, 6).
  • Z=10x+6yZ = 10x + 6y with x+y≤12x + y \le 12, 2x+y≤202x + y \le 20: corners (0,0)(0,0), (10,0)(10,0), (8,4)(8,4), (0,12)(0,12); Z=0,100,104,72Z = 0, 100, 104, 72: the maximum is at (8,4)(8, 4), NOT at the corner with the biggest xx.
  • Z=7x+8yZ = 7x + 8y, x+y≤20x + y \le 20, y≥5y \ge 5, x≤10x \le 10: corners (0,5)(0,5), (10,5)(10,5), (10,10)(10,10), (0,20)(0,20); Z=40,110,150,160Z = 40, 110, 150, 160; maximum 160160.
  • The minimum is read from the same table: Z=4x+6yZ = 4x + 6y over (4,0)(4,0), (0,4)(0,4), (0,6)(0,6) gives 16,24,3616, 24, 36 — maximum 3636, minimum 1616.
  • Always write the vertex beside its value; stems ask sometimes for the value, sometimes for the point.

Corner-point method

max⁡/min⁡ Z=max⁡/min⁡vertices V Z(V)(bounded region)\max / \min\ Z = \max / \min_{\text{vertices } V}\ Z(V) \quad (\text{bounded region})

Worked example

Maximise Z=2x+3yZ = 2x + 3y subject to x+y≤6x + y \le 6, x≤4x \le 4, y≤5y \le 5, x,y≥0x, y \ge 0.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 1Linear ProgrammingEASY
The maximum value of Z=3x+5yZ = 3x+5y subject to the constraints 3x+2y≤183x+2y \leq 18, x≤4x \leq 4, y≤6y \leq 6, x,y≥0x,y \geq 0, is

[Q105 · 11th May Shift 2 · 2024]

Stopping at the first good corner

(10,0)(10, 0) gives 100100 and looks final; (8,4)(8, 4) gives 104104. Every vertex is evaluated before the answer is read.

Concept 2 of 4

Corners That Are Not on the Axes: Solve the Pair of Lines

Intuition

When the best corner is where two slanted boundaries cross, solve the two equations simultaneously — the answer is often a fraction, and the option list has it as a fraction.

Definition

  • Z=6x+3yZ = 6x + 3y, x+y≤5x + y \le 5, x+2y≥4x + 2y \ge 4, 4x+y≤124x + y \le 12: 4x+y=124x + y = 12 with x+y=5x + y = 5 gives (73,83)\left(\frac73, \frac83\right), Z=22Z = 22; 4x+y=124x + y = 12 with x+2y=4x + 2y = 4 gives (207,47)\left(\frac{20}{7}, \frac47\right), Z=1327Z = \frac{132}{7}; axis corners (0,2)(0,2), (0,5)(0,5) give 66, 1515. Maximum 2222.
  • Z=5x+2yZ = 5x + 2y, 2x−y≥22x - y \ge 2, x+2y≤8x + 2y \le 8: corners (1,0)(1,0), (8,0)(8,0), (125,145)\left(\frac{12}{5}, \frac{14}{5}\right); Z=5,40,17.6Z = 5, 40, 17.6; maximum 4040 — the fractional corner is a distractor here, not the answer.
  • Solve by elimination: multiply to match a coefficient, subtract, back-substitute. Check the corner satisfies the remaining constraints before evaluating.
  • Keep values as fractions until the comparison; 1327≈18.9<22\frac{132}{7} \approx 18.9 < 22 is only obvious once both are numbers.

Corner from two boundaries

a1x+b1y=c1, a2x+b2y=c2 ⇒ (x,y) by elimination, then check the other constraintsa_1x + b_1y = c_1,\ a_2x + b_2y = c_2 \ \Rightarrow\ (x, y) \text{ by elimination, then check the other constraints}

Worked example

Maximise Z=4x+5yZ = 4x + 5y subject to 2x+y≤82x + y \le 8, x+2y≤7x + 2y \le 7, x,y≥0x, y \ge 0.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 2Linear ProgrammingMODERATE
In L.P.P., the maximum value of objective function Z=6x+3yZ = 6x+ 3y subject to constraints x+y≤5,x+2y≥4,4x+y≤12,x,y≥0x+y\leq 5,x+ 2y\geq 4,4x+y\leq 12,x,y\geq 0 is

[Q118 · 25 April Shift II · 2025]

Assuming the fractional corner is the answer

Option lists offer 1327\frac{132}{7} and 1227\frac{122}{7} beside 2222. A fraction is a corner value, not automatically the optimum; compare all of them.

Concept 3 of 4

Minimising, Negative Coefficients, and Max Minus Min

Intuition

Nothing changes for a minimum: the same vertex table, read for the smallest value. A negative coefficient (Z=7x−8yZ = 7x - 8y) makes large yy BAD, so the maximum can sit where yy is smallest; and a 'difference of max and min' stem is two lookups in one table.

Definition

  • Z=7x−8yZ = 7x - 8y, x+y≤20x + y \le 20, y≥5y \ge 5: corners (0,20)(0,20), (0,5)(0,5), (15,5)(15,5); Z=−160,−40,65Z = -160, -40, 65. Max −- min =225=5k+200⇒k=5= 225 = 5k + 200 \Rightarrow k = 5.
  • Minimum from a figure: region between y=3y = 3 and y=x+3y = x + 3, right of 2x+3y=122x + 3y = 12, left of x=4x = 4; Z=3x+5yZ = 3x + 5y at (4,3)(4,3), (4,7)(4,7), (35,185)\left(\frac35, \frac{18}{5}\right), (32,3)\left(\frac32, 3\right) is 27,47,19.8,19.527, 47, 19.8, 19.5. The corner-point minimum is 19.519.5; the official key marks 19.819.8 even though its own working lists 19.519.5. The bank keeps the official letter with a note — know both numbers.
  • A minimum over an UNBOUNDED region exists when the objective's coefficients are non-negative (it cannot decrease without bound); a maximum then may not exist.
  • Cost stems ('minimum cost of the chip') are minimisations with the same method.

Max minus min

max⁡Z−min⁡Z=max⁡VZ(V)−min⁡VZ(V)\max Z - \min Z = \max_V Z(V) - \min_V Z(V)

Worked example

Find the difference between the maximum and minimum of Z=5x−3yZ = 5x - 3y over x+y≤10x + y \le 10, y≥2y \ge 2, x,y≥0x, y \ge 0.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 3Linear ProgrammingMODERATE
If the difference between the maximum and minimum values of the objective function z=7x−8yz = 7x- 8y subject to the constraints x+y⩽20,y⩾5,x,y⩾0x+y\leqslant 20,y\geqslant 5,x,y\geqslant 0 is 5k+2005k + 200, then the value of k is

[Q148 · 22 April Shift I · 2025]

Treating the largest coordinates as the maximum

With Z=7x−8yZ = 7x - 8y, the corner (0,20)(0, 20) gives the MINIMUM. Substitute; never rank corners by position.

Concept 4 of 4

When the Figure Labels the Corners: Read Coordinates, Then Substitute

Intuition

Many stems give the shaded region with its vertices marked. There is no plotting to do — read each vertex's coordinates from the axes, evaluate ZZ, compare.

Definition

  • Region OCDBOCDB with C(10,10)C(10,10), D(10,20)D(10,20), B(0,25)B(0,25): Z=3x+4yZ = 3x + 4y gives 0,70,110,1000, 70, 110, 100; maximum 110110 at DD.
  • Corners O(0,0)O(0,0), A(6,0)A(6,0), B(6,4)B(6,4), C(3,7)C(3,7), D(0,5)D(0,5) with Z=4x+3yZ = 4x + 3y: 0,24,36,33,150, 24, 36, 33, 15; maximum 3636 at BB — set in two sittings with the same figure.
  • Corners (3,0)(3,0), (3,2)(3,2), (2,3)(2,3), (0,3)(0,3) with Z=10x+25yZ = 10x + 25y: 30,80,95,7530, 80, 95, 75; maximum 9595 at (2,3)(2, 3).
  • A vertex not on a grid intersection must be COMPUTED from the two lines through it (previous concept); the figure only tells you which two lines.
  • Word-dressed figures (a scholarship z=550x+300yz = 550x + 300y over a quadrilateral) are the same read-and-substitute.

Figure stems

read Vi from the axes→Z(Vi)→compare\text{read } V_i \text{ from the axes} \to Z(V_i) \to \text{compare}

Worked example

A figure shows a feasible region with vertices O(0,0)O(0,0), P(8,0)P(8,0), Q(5,6)Q(5,6), R(0,7)R(0,7). Maximise Z=6x+4yZ = 6x + 4y.
Practice this conceptself-check

From the bank · past-year question

Example 4Linear ProgrammingMODERATE
The shaded area in the given figure is a solution set for some system of inequalities. The maximum value of the function z=4x+3yz = 4x + 3y subject to linear constraints given by the system is

[Q103 · 16th May Shift 2 · 2023]

Reading a corner one grid unit off

C(3,7)C(3,7) misread as (3,8)(3,8) gives 3636 again, by coincidence — but (10,20)(10,20) misread as (10,25)(10,25) gives 130130, which is on the list. Read each vertex against both axes.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (4)

Watch out for (4)

Drill every past-year question on this subtopic

16 questions from the bank — paginated, with cart and Word-export support.

Related notes