1. Key Terminology

TermDefinition
Decision variablesThe unknowns to be determined (e.g., x = units of product A, y = units of product B)
Objective functionThe linear expression to be maximised or minimised: Z = ax + by
ConstraintsLinear inequalities that restrict the decision variables (resource limits, requirements)
Non-negativity constraintsx ≥ 0, y ≥ 0 — always included (quantities can't be negative)
Feasible regionThe set of all (x, y) satisfying ALL constraints simultaneously; always a convex polygon (or unbounded region)
Feasible solutionAny point (x, y) inside or on the boundary of the feasible region
Optimal solutionThe feasible solution that gives the maximum (or minimum) value of Z
Corner points (vertices)The vertices of the feasible region polygon; the optimal solution always occurs at one of these

2. Standard Form of an LP Problem

Maximise (or Minimise) Z=ax+by
Subject to: a1x+b1yc1,   a2x+b2yc2,   …
and x0, y0

Constraints may also be ≥ or = depending on the problem. Resource constraints are typically ≤; requirement constraints are typically ≥.

3. Graphical Method — Step-by-Step

  1. Convert each constraint to an equation (replace ≤ or ≥ with =) and draw the boundary line.
  2. Determine the feasible half-plane for each constraint: test the origin (0,0). If it satisfies the constraint, shade the origin side; otherwise shade the opposite side.
  3. Identify the feasible region — the intersection of all shaded half-planes (including x ≥ 0 and y ≥ 0).
  4. Find all corner points of the feasible region: these are at intersections of boundary lines (solve pairs of equations).
  5. Evaluate Z at each corner point.
  6. The optimal value is the largest (for max) or smallest (for min) among all corner point values.

4. Corner Point Theorem (Fundamental Theorem of LP)

If a feasible region is bounded (enclosed), the objective function Z attains both its maximum and minimum values, and both occur at corner points of the feasible region.

If the feasible region is unbounded, maximum or minimum may or may not exist — must check (covered in Topic 2).

Multiple optimal solutions: If Z takes the same value at two adjacent corner points, then the entire edge between them is optimal (infinitely many solutions).

5. Worked Example 1 — Maximisation (JEE Main / Board)

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

Step 1: Draw boundary lines.

L1: 6x+4y=24 → intercepts (4,0) and (0,6).

L2: x+2y=6 → intercepts (6,0) and (0,3).

Step 2: Find corner points.

O = (0,0); A = (4,0) [L1 meets x-axis]; B = intersection of L1 and L2; C = (0,3) [L2 meets y-axis].

Intersection B: From L2: x = 6−2y. Substitute into L1: 6(6−2y)+4y = 24 → 36−12y+4y = 24 → y = 3/2. Then x = 6−3 = 3. B = (3, 3/2).

Step 3: Evaluate Z = 5x + 4y at each corner.

Corner PointZ = 5x + 4y
O = (0, 0)0
A = (4, 0)20
B = (3, 3/2)5(3)+4(3/2) = 15+6 = 21 ← Maximum
C = (0, 3)12

Maximum Z = 21 at (3, 3/2).

6. Worked Example 2 — Minimisation (Board)

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

Corner points:

L1: x+2y=3 → (3,0) and (0,3/2).   L2: x+y=2 → (2,0) and (0,2).

Intersection of L1 and L2: x+2y=3 and x+y=2 → subtracting: y=1, x=1. So (1,1).

Feasible region is to the upper-right of both lines (satisfies ≥). Corner points: (3,0), (1,1), (0,2).

Corner PointZ = x + 2y
(3, 0)3 ← Minimum (tied)
(1, 1)3 ← Minimum (tied)
(0, 2)4

Minimum Z = 3 — attained at both (3,0) and (1,1), so every point on the segment joining them is also optimal (multiple optimal solutions).

7. Formulation — Translating Word Problems to LP

Step-by-Step Formulation Method

  1. Identify the decision variables — what are you choosing? (e.g., x = number of units of product A)
  2. Write the objective function — what are you maximising/minimising? (profit, cost, time)
  3. List all constraints — what limits the variables? (capacity, budget, requirements)
  4. Add non-negativity constraints — x ≥ 0, y ≥ 0 (always).

Worked Formulation (JEE Main / Board)

A factory makes two products A and B. Each unit of A requires 2 hours of machine time and 1 hour of labour; each unit of B requires 1 hour of machine and 3 hours of labour. Machine time available: 10 hours; labour available: 15 hours. Profit per unit: A = ₹5, B = ₹8. Maximise profit.

Let x = units of A, y = units of B.

Objective: Maximise Z = 5x + 8y

Constraints: 2x + y ≤ 10 (machine), x + 3y ≤ 15 (labour), x ≥ 0, y ≥ 0.

Corner points: (0,0), (5,0), (3,4), (0,5).

Intersection of 2x+y=10 and x+3y=15: multiply first by 3: 6x+3y=30; subtract: 5x=15 → x=3, y=4.

Z values: 0, 25, 47, 40. Maximum profit = ₹47 at x=3, y=4.