In LPP, evaluate the objective function at the vertices of the feasible region to find the maximum.
10
| Vertex | \( z = 3x + 4y \) |
|---|---|
| \((0,0)\) | \(0\) |
| \((4,0)\) | \(3(4) + 4(0) = 12\) |
| \((0,4)\) | \(3(0) + 4(4) = 16\) |
To maximize the objective function \( z = 3x + 4y \) subject to the constraints \( x + y \leq 4 \), \( x \geq 0 \), and \( y \geq 0 \), we follow these steps:
1. Define the Feasible Region: The constraints are:
These constraints describe a triangle with vertices at: (0,0), (4,0), and (0,4).
2. Evaluate the Objective Function at Each Vertex:
| Vertex | Objective Function \( z = 3x + 4y \) |
|---|---|
| (0,0) | \( z = 3(0) + 4(0) = 0 \) |
| (4,0) | \( z = 3(4) + 4(0) = 12 \) |
| (0,4) | \( z = 3(0) + 4(4) = 16 \) |
3. Determine the Maximum Value: Among the calculated values of \( z \), the highest is 16, which occurs at the point (0,4).
Therefore, the maximum value of \( z \) is 16.