Code
import numpy as np
import matplotlib.pyplot as plt
import cvxpy as cp
Plot showing the life expectancy using data from the World Health Organization (WHO) between 2000 and 2021 in Kenya.
stochastic-programming, cvxpy
Stochastic programming is an optimization framework that incorporates uncertainty into decision-making models. Unlike deterministic optimization, which assumes perfect/fixed information about all parameters, stochastic programming accounts for randomness in constraints and objectives.
Key Features of Stochastic Programming:
Decision Variables: Represent choices to be optimized.
Uncertainty (Random Variables): Captures variability in parameters.
Objective Function: Typically involves expected value optimization.
Constraints: Incorporate probabilistic constraints or chance constraints.
The goal is often to minimize expected cost or maximize expected profit while considering risk measures.
Newsvendor Problem
A vendor must decide how many items to stock without knowing the exact demand. The goal is to minimize expected costs, balancing:
Overstock costs: Money lost on unsold items
Understock costs: Lost revenue from unmet demand
Optimal stocking levels depend on the probability distribution of demand.
Portfolio Optimization
In finance, investors allocate funds across assets to maximize expected returns while controlling risk. The problem involves:
Decision variables: Asset allocation weights
Objective: Maximize expected returns considering the risk
Constraints: Budget (weights sum to 1), non-negativity, diversification limits.
The solution balances the trade-off between return and risk across various market scenarios.
Consider Supply Chain Optimization under Demand Uncertainty. Demand for electronic supply in Nairobi in the past two weeks together with their respective probability is given below:
Demand | Probability |
---|---|
255 | 0.03 |
302 | 0.15 |
270 | 0.04 |
317 | 0.1 |
285 | 0.05 |
332 | 0.05 |
300 | 0.09 |
347 | 0.01 |
315 | 0.09 |
362 | 0.03 |
330 | 0.2 |
262 | 0.07 |
309 | 0.05 |
277 | 0.04 |
Consider constraints = [supply >= 120, supply <= 330]
. Compute the optimal supply.
Sum of probabilities: 1.00
cp.abs(supply - demand)
cp.pos(supply - demand)
supply > demand
, meaning it considers only excess supply as costly.# Print the optimal supply value
optimal_supply = supply.value
print("Optimal Supply:", optimal_supply)
Optimal Supply: 309.00000011886954
# Plot the cost function over a range of supply values
supply_range = np.linspace(120, 330, 100)
cost_values = [sum(p * abs(s - d) for p, d in zip(probability, demand)) for s in supply_range]
plt.figure(figsize=(8, 5))
plt.plot(supply_range, cost_values, label='Expected Cost', color='blue')
plt.axvline(optimal_supply, color='red', linestyle='--', label=f'Optimal Supply ({optimal_supply:.2f})')
plt.xlabel('Supply')
plt.ylabel('Expected Cost')
plt.title('Supply Chain Optimization under Demand Uncertainty')
plt.legend()
plt.grid()
plt.show()
Consider ICU Bed Allocation under Uncertain Patient Arrivals. Number of unscheduled arrivals at Kenyatta National Hospital in the last 10 days has been [25, 20, 30, 50, 27, 39, 42, 29, 35, 42]
patients with assigned probabilities [0.1, 0.1, 0.08, 0.15, 0.09, 0.05, 0.1, 0.1, 0.13, 0.1]
respectively. Consider bed constraints = [beds >= 17, beds <= 55]
. Compute the optimal number of ICU beds allocation.
Sum of probabilities: 1.00
# Print the optimal bed allocation
optimal_beds = beds.value
print("Optimal ICU Beds Allocation:", optimal_beds)
Optimal ICU Beds Allocation: 34.99999972144706
# Plot the cost function over a range of bed allocations
bed_range = np.linspace(17, 55, 100)
cost_values = [sum(p * abs(b - a) for p, a in zip(probability, arrivals)) for b in bed_range]
plt.figure(figsize=(8, 5))
plt.plot(bed_range, cost_values, label='Expected Cost', color='blue')
plt.axvline(optimal_beds, color='red', linestyle='--', label=f'Optimal Beds ({optimal_beds:.2f})')
plt.xlabel('ICU Beds')
plt.ylabel('Expected Cost')
plt.title('Healthcare Resource Allocation with Uncertain Demand')
plt.legend()
plt.grid()
plt.show()
Disclaimer: For information only. Accuracy or completeness not guaranteed. Illegal use prohibited. Not professional advice or solicitation. Read more: /terms-of-service
@misc{kabui2025,
author = {{Kabui, Charles}},
title = {Stochastic {Programming} and {Applications}},
date = {2025-03-11},
url = {https://toknow.ai/posts/computational-techniques-in-data-science/stochastic-programming-and-applications/index.html},
langid = {en-GB}
}