Operations Management
From the business management curriculum ยท Updated May 25, 2026
# Operations Management
## 1. Introduction & Overview
* **The Mental Model:** Operations Management is the logistical and strategic orchestration of transforming inputs into outputs, akin to a sophisticated biological system converting raw nutrients into cellular structures and energy, optimizing for efficiency, variability, and quality across complex metabolic pathways.
* **Significance:**
* **Resource Utilization Optimization:** Maximizes the effective use of capital, labor, materials, and information.
* **Cost Reduction:** Streamlines processes, minimizes waste, and improves productivity to lower per-unit costs.
* **Quality Enhancement:** Implements robust control mechanisms to ensure product/service consistency and meet customer specifications.
* **Competitive Advantage:** Enables faster time-to-market, superior product delivery, and enhanced customer satisfaction.
* **Supply Chain Resilience:** Develops agile and robust supply chain structures capable of adapting to market fluctuations and disruptions.
* **Sustainability Integration:** Incorporates environmental and social considerations into operational processes and designs.
```mermaid
mindmap
root((Operations Management))
"Strategic OM Decisions"
"Process Design & Capacity Planning"
"Supply Chain Strategy"
"Location & Layout"
"Technology Integration"
"Tactical OM Decisions"
"Inventory Management"
"Production Planning & Scheduling"
"Quality Management"
"Maintenance & Reliability"
"Operational OM Decisions"
"Day-to-day Scheduling"
"Workforce Management"
"Quality Control"
"Inventory Control"
"Core Objectives"
Cost
Quality
Speed
Flexibility
Dependability
"Key Methodologies"
"Lean Manufacturing"
Six Sigma
"JIT (Just-in-Time)"
"TQM (Total Quality Management)"
"MRP (Material Requirements Planning)"
"ERP (Enterprise Resource Planning)"
```
## 2. In-Depth Theory, Equations & Mechanisms
Operations Management primarily concerns itself with the transformation model, where inputs are converted into outputs. This process is governed by fundamental principles of efficiency, effectiveness, and adaptability.
### 2.1 Transformation Process Model
The generalized transformation process involves:
* **Inputs:** Resources such as materials ($M$), labor ($L$), capital ($C$), equipment ($E$), technology ($T$), and information ($I$).
* **Transformation Process ($\Omega$):** The series of activities that convert inputs into outputs. This can be manufacturing, service delivery, or information processing.
* **Outputs:** Finished goods ($FG$), services ($S$), waste ($W$), and sometimes by-products ($BP$).
The overall function can be represented as:
$O = \Omega(M, L, C, E, T, I)$
Where:
* $O$ = Vector of outputs
* $\Omega$ = Transformation function
* $M, L, C, E, T, I$ = Vectors of respective inputs
### 2.2 Capacity Management
Capacity refers to the maximum output rate of a production or service system.
* **Design Capacity ($C_D$):** The maximum theoretical output rate of a system under ideal conditions.
* **Effective Capacity ($C_E$):** The maximum output rate that can be sustained under normal operating conditions, accounting for realities like rest breaks, maintenance, and scheduling complexities. $C_E = C_D \times (1 - \text{loss factor})$.
* **Actual Output ($A_O$):** The observed output rate, which is always less than or equal to effective capacity.
**Utilization Rate ($U$):**
$U = \frac{A_O}{C_D} \times 100\%$
**Efficiency Rate ($E$):**
$E = \frac{A_O}{C_E} \times 100\%$
**Throughput ($THR$):** The rate at which the system produces output. Measured in units/time.
$THR = \frac{\text{Demand}}{\text{Process Time per unit}}$ (if demand-constrained)
$THR = \frac{\text{Capacity}}{\text{Bottleneck Cycle Time}}$ (if capacity-constrained)
### 2.3 Inventory Management
Inventory management seeks to balance the costs of holding inventory (holding cost, $H_c$) against the costs of ordering/setup (ordering cost, $O_c$) and potential stockouts (shortage cost, $S_c$).
**Economic Order Quantity (EOQ):**
Minimizes total inventory costs (holding + ordering costs).
$EOQ = \sqrt{\frac{2 \cdot D \cdot O_c}{H_c}}$
Where:
* $D$ = Annual demand (units)
* $O_c$ = Ordering cost per order
* $H_c$ = Annual holding cost per unit
**Reorder Point (ROP):**
The level of inventory at which a new order should be placed.
$ROP = \text{Demand During Lead Time} + \text{Safety Stock}$
$ROP = (d \times LT) + SS$
Where:
* $d$ = Daily or weekly demand
* $LT$ = Lead time (days or weeks)
* $SS$ = Safety Stock (buffer against demand/lead-time variability)
**Safety Stock ($SS$):** Calculated using statistical methods based on desired service level and demand/lead time variability.
$SS = Z \times \sigma_L \times \sqrt{LT'}$
Where:
* $Z$ = Z-score corresponding to the desired service level (e.g., 1.645 for 95% service level)
* $\sigma_L$ = Standard deviation of demand during lead time (or standard deviation of daily demand $\times \sqrt{LT}$ if daily demand std dev is used)
* $LT'$ = Lead time in periods (e.g., days, weeks)
### 2.4 Quality Management (Total Quality Management - TQM & Six Sigma)
**TQM Principles:**
1. Customer Focus
2. Total Employee Involvement
3. Process-Centered Approach
4. Integrated System
5. Strategic & Systematic Approach
6. Continual Improvement
7. Fact-Based Decision Making
8. Communications
**Six Sigma:** A data-driven methodology for eliminating defects. A "Six Sigma" process is one in which 99.99966% of all opportunities to produce a feature are statistically expected to be free of defects. This equates to 3.4 defects per million opportunities (DPMO).
**Defects Per Million Opportunities (DPMO):**
$DPMO = \frac{\text{Number of Defects}}{\text{Total Opportunities for Defects}} \times 1,000,000$
**Process Capability Index ($C_p$):** Measures how well a process can produce output within specified limits.
$C_p = \frac{USL - LSL}{6\sigma}$
Where:
* $USL$ = Upper Specification Limit
* $LSL$ = Lower Specification Limit
* $\sigma$ = Process standard deviation
**Process Capability Ratio ($C_{pk}$):** Accounts for cases where the process mean is not centered between the specification limits.
$C_{pk} = \min\left( \frac{\mu - LSL}{3\sigma}, \frac{USL - \mu}{3\sigma} \right)$
Where:
* $\mu$ = Process mean
A $C_p$ or $C_{pk}$ value of 1.33 is often considered acceptable for a process. For Six Sigma, $C_{pk}$ needs to be 1.5 or higher.
### 2.5 Lean Manufacturing (Just-In-Time - JIT)
Lean objectives are to eliminate waste (Muda) and maximize value. The core wastes (TIMWOOD) are:
* **T**ransportation
* **I**nventory
* **M**otion
* **W**aiting
* **O**verproduction
* **O**ver-processing
* **D**efects
**Takt Time:** The rate at which products need to be completed to meet customer demand.
$\text{Takt Time} = \frac{\text{Available Production Time}}{\text{Customer Demand}}$
**Value Stream Mapping (VSM):** A visual tool to analyze the flow of materials and information required to bring a product or service to a customer.
```mermaid
stateDiagram-v2
direction LR
state "Initial Raw Material Order" as RMO
state "Inventory Holding (Raw Mat.)" as IRM
state "Production Scheduling" as PS
state "Work-in-Process (WIP)" as WIP
state "Final Assembly/Service Delivery" as FASD
state "Finished Goods Inventory" as FGI
state "Customer Delivery" as CD
state "Demand Trigger" as DT
state "Customer Order" as CO
state "Waste Generation" as W
state "Quality Check (QC)" as QC
DT --> RMO : Forecast/Actual Demand
CO --> PS : Specific Order recieved
RMO --> IRM : Material Arrival
IRM --> PS : Release for Production
PS --> WIP : Production Start
WIP --> QC : Partial/Full Completion
QC --> FASD : Quality Approved
QC --> W : Rework/Scrap (Defect)
FASD --> FGI : Product Ready
FGI --> CD : Dispatch to Customer
CD --> DT : Feedback/Repeat Order
W --> IRM : Material Repurchase (if salvageable)
W --> PS : Process Adjustment
note left of RMO
Supplier Lead Time
Negotiation & Contracts
end note
note right of WIP
Process Bottlenecks
Yield Losses
Cycle Time
end note
note top of QC
SPC, Control Charts
Inspection Points
end note
note bottom of FGI
Holding Costs
Stock-out Risks
end note
```
## 3. Technical Procedures & Applications
### 3.1 Implementing a Pull System via Kanban
A fundamental lean practice, Kanban, is a signaling system used to control the flow of production and inventory based on actual demand, thereby preventing overproduction and excessive inventory. This is a crucial component of Just-In-Time (JIT) manufacturing.
**Procedure:**
1. **Identify the Value Stream & Work Centers:** Map the entire process from raw material to finished goods. Define distinct work centers (e.g., machining, assembly, painting).
2. **Calculate Kanban Card Requirements:** Determine the number of Kanban cards (or containers) needed for each work-in-process (WIP) stage.
* **Formula for Number of Kanban Cards ($N$):**
$N = \frac{D \cdot (P_T + W_T) \cdot (1 + S_F)}{C}$
Where:
* $D$ = Average demand per unit of time (e.g., per hour)
* $P_T$ = Processing time per unit (time to produce one unit in the preceding process)
* $W_T$ = Waiting time (or transit time) per unit, including movement and queue time
* $S_F$ = Safety factor (typically 0.1 to 0.2, representing buffer against variability)
* $C$ = Container capacity (number of units per Kanban container)
3. **Design Kanban Cards:** Each card specifies:
* Part number and description
* Container capacity
* Previous process (where the material comes from)
* Next process (where the material goes)
* Storage location.
4. **Establish Kanban Loops:**
* **Production Kanban (P-Kanban):** Authorizes the previous process to produce material. When a container is emptied at the subsequent process, its P-Kanban is returned to the preceding process, signaling the need for production.
* **Withdrawal Kanban (W-Kanban - often implicit):** Authorizes the movement of a full container of material from the preceding process to the subsequent process.
5. **Implement the Pull System:**
* When a downstream process consumes a container of material, the empty container (and its attached P-Kanban) is returned to the upstream supplying process.
* The upstream process can only produce once it receives a P-Kanban. This limits WIP to the number of authorized containers.
* Material movement between processes is triggered by the downstream process "pulling" material as needed, rather than the upstream process "pushing" material based on a schedule.
6. **Continuous Monitoring & Improvement:** Regularly review Kanban card quantities, Takt time, and lead times to ensure optimal flow and adjust for changes in demand or process efficiency. The safety factor ($S_F$) is critical for robustness and needs recalibration based on actual lead time and demand variability.
```mermaid
sequenceDiagram
participant Customer
participant "Finished Goods" as FG
participant "Assembly Area" as Assy
participant "Sub-Component Prod. (A)" as SCPA
participant "Sub-Component Prod. (B)" as SCPB
participant "Raw Material Inventory" as RMI
Customer ->> FG: Places Order
Note right of FG: Triggers Withdrawal Kanban for FG
FG -->> Assy: Pulls finished product from FG
Assy -->> SCPA: Pulls "Component A" (W-Kanban A)
SCPA -->> RMI: Pulls "Raw Mat A" (W-Kanban RM_A)
Note left of SCPA: P-Kanban A is returned to SCPA when container is emptied from Assy
SCPA ->> SCPA: Produces "Component A" (triggered by P-Kanban A)
SCPA -->> Assy: Supplies "Component A"
Assy -->> SCPB: Pulls "Component B" (W-Kanban B)
SCPB -->> RMI: Pulls "Raw Mat B" (W-Kanban RM_B)
Note left of SCPB: P-Kanban B is returned to SCPB when container is emptied from Assy
SCPB ->> SCPB: Produces "Component B" (triggered by P-Kanban B)
SCPB -->> Assy: Supplies "Component B"
Assy ->> Assy: Assembles Product
Assy -->> FG: Replenishes Finished Goods
FG -->> Customer: Delivers Product
```
## 4. Examiner's Breakdown
### 4.1 Comparative Analysis
| Feature | Mass Production (Traditional) | Lean Manufacturing (JIT) |
| :--------------------- | :------------------------------------------------------------- | :---------------------------------------------------------- |
| **Philosophy** | "Push" system: Produce-and-store based on forecast. | "Pull" system: Produce only what is needed, when needed. |
| **Inventory** | High levels of inventory (raw, WIP, FG) as buffers. | Minimal to zero inventory; seen as waste. |
| **Setup Times** | Long setup times, leading to large batch production. | Short setup times (SMED), enabling small batch production. |
| **Quality Control** | End-of-line inspection; defects handled after production. | Integrated quality (Jidoka), root cause analysis (5 Whys), error-proofing (Poka-Yoke). |
| **Worker Roles** | Specialized, repetitive tasks; hierarchical management. | Multi-skilled, empowered teams; continuous improvement focus. |
| **Supplier Relationships** | Adversarial, focus on lowest price; multiple suppliers. | Collaborative, long-term partnerships; fewer, trusted suppliers. |
| **Response to Change** | Slow and inflexible due to large inventory and rigid processes. | Agile and flexible; quick adaptation to demand changes. |
| **Key Metrics** | Output volume, labor efficiency, machine utilization. | Takt time, lead time reduction, DPMO, inventory turns. |
| **Waste Perception** | Inventory as asset, necessary buffer. | Inventory as manifest waste (Muda). |
| **Process Focus** | Maximizing individual machine/worker utilization. | Optimizing flow across the entire value stream. |
### 4.2 High-Yield Marking Keywords
1. **DPMO (Defects Per Million Opportunities)**
2. **Takt Time Calculation**
3. **Economic Order Quantity (EOQ)**
4. **Jidoka (Autonomation)**
5. **Value Stream Mapping (VSM)**
6. **Heijunka (Production Leveling)**
7. **Single-Minute Exchange of Die (SMED)**
8. **Poka-Yoke (Mistake-Proofing)**
### 4.3 Trapdoor Mistakes
1. **Confusing P-Kanban and W-Kanban:** Students often misinterpret the signaling flow.
* **Correct:** P-Kanban *authorizes production* for the *previous process* when a *downstream process empties* a container. W-Kanban *authorizes movement* of a completed container from the previous process to the next process.
2. **Incorrectly applying EOQ assumptions:** Students fail to acknowledge EOQ's underlying assumptions (constant demand, known lead time, zero stockout cost, fixed ordering/holding costs).
* **Correct:** State that $EOQ = \sqrt{\frac{2 \cdot D \cdot O_c}{H_c}}$ is valid strictly under conditions of constant demand, immediate replenishment, no quantity discounts, and stable costs. For variable conditions, probabilistic models (e.g., including safety stock with ROP) are necessary.
3. **Misinterpreting "Waste" in Lean:** Students often limit "waste" to physical scrap.
* **Correct:** Waste (Muda) in Lean extensively covers non-value-adding activities categorized by TIMWOOD: Transportation, Inventory, Motion, Waiting, Overproduction, Over-processing, and Defects. These include concept-to-cash delays, unnecessary movement, and information rework.
4. **Equating Design Capacity with Actual Output:** Students often assume a system can always achieve its theoretical maximum.
* **Correct:** Differentiate: Design Capacity ($C_D$) is the theoretical maximum under ideal conditions. Effective Capacity ($C_E$) is the practical maximum under realistic conditions (e.g., breaks, maintenance). Actual Output ($A_O$) is typically less than or equal to $C_E$ due to unforeseen issues, demand fluctuations, or operational inefficiencies. Utilization and Efficiency metrics quantify these relationships.
Get the full business management curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account