Optimization Usi
Optimization Usi
Programming (LPP)
1. Definition
Linear Programming (LP) is a mathematical technique used to maximize or minimize a linear
objective function subject to linear constraints. The Graphical Method is applicable when there
are two decision variables, allowing us to visualize constraints and determine the feasible
region.
o The intersection of all constraint regions forms the feasible region, which
represents all possible solutions.
4. Identify Corner Points (Vertices)
o Find the points where constraint lines intersect. These are the corner points of
the feasible region.
5. Evaluate the Objective Function at Each Corner Point
o Compute the objective function value at each vertex of the feasible region.
6. Choose the Optimal Solution
o Maximization: The point with the highest objective function value is optimal.
o Minimization: The point with the lowest objective function value is optimal.
7. Check Special Cases
3. Mathematical Formulation
A standard Linear Programming Problem (LPP) is given by:
Objective Function
Z=c 1 x 1 +c 2 x 2
Constraints
a 1 x 1+ b1 x 2 ≤C 1 a 2 x 1+ b2 x2 ≤C 2 x 1 , x 2 ≥ 0 ( Non-negativity constraints )
5. Conclusion
Graphical LPP is a simple method to find the optimal solution for two-variable linear
programming problems.
It involves plotting constraints, identifying the feasible region, and evaluating the
objective function at corner points.
The method helps in decision-making problems in manufacturing, finance,
transportation, and resource allocation. 🚀