Linear Programming Flashcards

1
Q

What is Linear Programming (LP)?

A

The process of maximizing or minimizing an objective function subject to constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an Objective Function in LP?

A

A function to maximize or minimize.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Constraints in LP?

A

Limitations that restrict possible solutions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define Decision Variables in the context of LP.

A

Variables that affect the objective function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Feasible Solution?

A

Satisfies all constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an Optimal Solution?

A

The feasible solution that provides the best (maximum or minimum) value for the objective function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

List the steps for model formulation in LP.

A
  • Understand the problem
  • Define decision variables
  • Express the objective function in terms of decision variables
  • Write down all constraints using decision variables
  • Ensure non-negativity constraints are included
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How is a Maximization Problem formulated in LP?

A

Maximize Z=5x1+7x2 subject to constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a Feasible Region in LP?

A

The area where all constraints hold.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Define Extreme Points in the context of LP.

A

The corners of the feasible region where optimal solutions exist.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are Slack Variables?

A

Added to ‘≤’ constraints to convert them into equalities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are Surplus Variables?

A

Subtracted from ‘≥’ constraints to convert them into equalities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is Standard Form LP?

A

All constraints written as equalities with slack/surplus variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False: Optimal solutions in LP always occur at extreme points.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What computational tools assist in solving LP problems?

A
  • Excel Solver
  • MATLAB
  • Python
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the goal in Minimization Problems?

A

To reduce the objective function value.

17
Q

Fill in the blank: In LP, an Optimal Solution is found at _______.

A

[extreme points]

18
Q

What are Alternative Optimal Solutions?

A

Occurs when multiple solutions yield the same optimal value.

19
Q

Define Infeasibility in LP.

A

No feasible region exists (no solution satisfies all constraints).

20
Q

What is Unboundedness in LP?

A

The objective function can increase indefinitely without violating constraints.

21
Q

List the steps of the Simplex Method.

A
  • Convert LP into standard form
  • Construct the initial simplex tableau
  • Determine the entering variable
  • Determine the leaving variable
  • Generate the next tableau by pivoting
  • Repeat until optimal solution reached
22
Q

How is Infeasibility detected in the Simplex Method?

A

When an artificial variable remains positive in the final tableau.

23
Q

What indicates Unboundedness in the Simplex Method?

A

All entries in an entering column are non-positive.

24
Q

What is Degeneracy in the Simplex Method?

A

Occurs when a basic variable equals zero.

25
Q

What are the main approaches to solving LP problems?

A
  • Graphical Methods for small problems
  • Simplex Method for larger problems
  • Computer-Based Approaches for real-world problems
26
Q

True or False: Graphical Methods are useful for large LP problems.