Answer

Enter/Click/Tap Show/Complete
Previous
Next
B Bookmark

See

Purpose

Operational research uses optimization models. Linear programming, in particular, is written using vectors and matrices.

The basic form is:

\[\min c^T x\]

subject to

\[Ax = b, \qquad x \ge 0\]

where:

  • $x$ is the vector of decision variables
  • $c$ is the vector of objective coefficients
  • $A$ is the constraint matrix
  • $b$ is the vector of right-hand side values

Why Linear Algebra Matters

Linear algebra gives the language for:

  • writing many constraints compactly
  • understanding feasible regions geometrically
  • identifying vertices and basic feasible solutions
  • computing simplex steps
  • checking optimality through reduced costs

Core Objects

Object Meaning in OR
Vector $x$ decision variables
Vector $c$ costs/profits/objective coefficients
Matrix $A$ coefficients of constraints
Vector $b$ resource limits or requirements
Product $Ax$ left-hand side of all constraints
Product $c^T x$ objective value
Basis matrix $B$ selected independent columns of $A$
Inverse $B^{-1}$ used to compute basic variables

Main Mental Model

A linear program is a problem about choosing a vector $x$.

The constraints restrict which vectors are allowed.

The objective chooses the best allowed vector.

In two variables, we can draw the feasible region. In many variables, the same geometry still exists, but we use matrices and algorithms instead of drawings.

Minimal Roadmap

  1. Learn what vectors represent.
  2. Learn how matrices represent many equations at once.
  3. Learn how linear combinations describe dependence and span.
  4. Learn how rank tells us whether constraints or columns are independent.
  5. Learn how bases produce basic solutions.
  6. Use these ideas to understand vertices, feasible regions, and simplex.

Exam checkpoint

Use this topic only as much as needed to support LP algebra: matrices, rank, bases, linear systems, half-spaces, and hyperplanes. Connect every computation back to $Ax=b$, basis matrices, and feasible regions.