Tutorial 8 Math208
Tutorial 8 Math208
Mina Moeini
Mina moeini@sfu.ca
March 11, 2025
1
Location Capacity (pairs/week) Production Cost/pair (USD) Fixed Cost/week (USD)
Pontiac 32,000 2.70 7,000
Cincinnati 40,000 2.64 4,000
Dayton 40,000 2.69 6,000
Atlanta 40,000 2.62 7,000
Solution
Problem Parameters
The problem parameters include transportation costs, demand at each distribution center,
plant capacities, production costs per pair, and fixed costs per week at each plant.
Let:
2
Problem Decision Variables
The decision variables define the quantity of shoes to be produced and shipped from each
plant to each distribution center.
Let:
Constraint:
Ii ∈ {0, 1}, ∀i ∈ P (1)
Problem Constraints
The problem constraints include:
Demand Satisfaction
Each distribution center must receive at least its demand:
X
xi,j ≥ dj , ∀j ∈ D (2)
i∈P
Capacity Constraints
The production at each plant cannot exceed its capacity when the plant is active:
X
xi,j ≤ CAPi × Ii , ∀i ∈ P (3)
j∈D
Objective Function
The objective is to minimize the total transportation cost, production cost, and fixed cost:
XX X X X
min ri,j xi,j + pi xi,j + f ci Ii (4)
i∈P j∈D i∈P j∈D i∈P
3
Overall Model
XX X X X
min ri,j xi,j + pi xi,j + f ci Ii (5)
i∈P j∈D i∈P j∈D i∈P
X
s.t. xi,j ≥ dj , ∀j ∈ D (6)
i∈P
X
xi,j ≤ CAPi × Ii , ∀i ∈ P (7)
j∈D
The optimized objective value is 227, 210. The decision variables is as follows:
4
Landfill Location (Problem 7.3)
The Metropolis city council is examining four landfill sites as candidates for use in the city’s
solid waste disposal network. The monthly costs per ton have been estimated for operating
at each site and for transportation to each site from the various collection areas. In addition,
the amortized monthly cost for the facility at each proposed site has also been estimated.
The data are shown in the table below.
Landfill Site L1 L2 L3 L4
Operating Cost per Ton $8 $10 $9 $11
Fixed Cost per Month $1000 $800 $700 $900
What is the optimal configuration and the minimum system monthly cost?
Solution
Problem Parameters
The problem parameters include the transportation cost per ton to each landfill site, the
operating cost per ton for each landfill, the fixed cost per month for each landfill, and the
monthly tons of garbage produced at each collection area. Let S = {A, B, C, D, E, F }
represent the set of collection areas, and let L = {L1, L2, L3, L4} represent the set of landfill
sites. The transportation cost per ton from collection area i to landfill j is denoted by ri,j ,
where i ∈ S and j ∈ L. The monthly tons of garbage produced in each collection area,
referred to as the demand, is given by di , where i ∈ S. The operating cost per ton for each
landfill is represented by oj , where j ∈ L, and the fixed cost per month for each landfill is
denoted by fj , where j ∈ L.
5
Problem Decision Variables
The decision variables represent the amount of garbage sent from each area to a landfill:
• Let xi,j , where i ∈ S, j ∈ L, be the amount of garbage sent from area i to landfill j.
• Since there is a fixed cost for each landfill we choose to operate, we introduce a binary
indicator variable Ij , where j ∈ L, which is defined as:
(
1, if landfill j is used
Ij =
0, otherwise
Problem Constraints
We must ensure that all garbage from each area is collected:
X
xi,j ≥ di , ∀i ∈ S (9)
j∈L
Problem Objective
The objective is to minimize the total transportation cost, the operating cost of used landfills,
and the fixed cost of each landfill:
! ! !
XX X X X
min ri,j xi,j + oj xi,j + fj Ij (12)
i∈S j∈L j∈L i∈S j∈L
6
Overall Model
XX X X X
min ri,j xi,j + oj xi,j + fj Ij (13)
i∈S j∈L j∈L i∈S j∈L
X
subject to xi,j ≥ di , ∀i ∈ S (14)
j∈L
X
xi,j ≤ M Ij , ∀j ∈ L (15)
i∈S
Ij ∈ {0, 1}, ∀j ∈ L (16)
The optimal cost is minimized at $119,400. The optimal decision variables are as follows:
The optimal allocation of garbage to landfill sites is shown in the table below:
Collection Area L1 L2 L3 L4
A 0 0 500 0
B 700 0 0 0
C 0 0 1500 0
D 1000 0 0 0
E 1800 0 0 0
F 0 0 1200 0
From this table, we see that landfills L1 and L3 are selected for funding.