Solving Transportation Problems with Python: Minimizing Transportation Costs

Supply Chain Management
Prescriptive analytics
Author

Bevan Stanely

Published

August 17, 2024

In the competitive landscape of modern business, minimizing operational costs is essential for maintaining profitability. Transportation costs, in particular, play a significant role in the overall cost structure of companies that rely on distributing goods from manufacturing plants to various markets. Efficiently optimizing these transportation routes can lead to significant savings and improved service delivery.

In this blog post, we’ll explore how Python can be used to solve transportation problems, focusing on minimizing transportation costs when distributing goods from plants to markets. We’ll walk through the problem, define the necessary variables and constraints, and demonstrate how Python can be used to implement an optimal solution.

Understanding the Problem

The transportation problem is a classic optimization challenge in operations research. It involves determining the most cost-effective way to transport goods from a set of suppliers (e.g., plants) to a set of consumers (e.g., markets). The objective is to minimize the total transportation cost while satisfying supply and demand constraints.

Input Parameters

To model the problem, we need three key input parameters:

  • Supply: The available quantity of goods at each plant.
  • Demand: The required quantity of goods at each market.
  • Transportation Costs: The cost of transporting one unit of goods from a particular plant to a particular market.

For those interested in the mathematical derivation, jump right in to the math.

The transportation problem can be expressed as a linear programming model. Let \(x_{ij}\) represent the number of units transported from plant \(i\) to market \(j\). The objective is to minimize the total cost:

graph TD
    A[Plant i] -->|x_ij| B[Market j]

\[ \text{Minimize } Z= \sum_{i=1}^m\sum_{j=1}^nc_{ij}x_{ij} \]

Subject to:

  • Supply constraints: \(\sum_{j=1}^nx_{ij}\leq s_i\) for all plants \(i \in \{1,..,m\}\)
  • Demand constraints: \(\sum_{i=1}^mx_{ij}\leq d_i\) for all markets \(j \in \{1,..,n\}\)
  • Non-negativity: \(x_{ij} \geq 0\)

Where:

  • \(c_{ij}\) is the cost of transporting one unit from plant \(i\) to market \(j\)
  • \(s_i\) is the supply at plant \(i\)
  • \(d_j\) is the demand at market \(j\)

The solution to this linear programming problem yields the optimal transportation plan and minimum cost.

If you’d rather see the optimization in action, follow through.

Important

Please run the setup first!!

We have all the required packages loaded and ready. Let us now implement the input parameters in python.

Note

Code blocks are editable. Feel free to tweak them!!

Decision Variables

In optimization problems, decision variables represent the quantities we want to determine. In this case, the decision variables will represent the number of units to be transported from each plant to each market.

Note

The decision variables are the unknowns that we need to solve for. These variables are subject to constraints (supply and demand) and are used in the objective function to calculate the total transportation cost.

Resource Constraints

Resource constraints ensure that the supply from each plant is not exceeded and the demand at each market is met.

Supply Constraints

Each plant can only supply a limited number of goods, so the sum of goods transported from a plant to all markets cannot exceed the plant’s supply.

Demand Constraints

Each market requires a certain amount of goods, so the sum of goods received from all plants should meet the market’s demand.

Objective Function

The objective is to minimize the total transportation cost, which is the sum of the cost for each route multiplied by the number of units transported.

Solving the Problem with Python

With the decision variables, constraints, and objective function defined, we can now solve the transportation problem using Python. Since the API wise intuitive pulp package does not work in browser yet, let us use Scipy’s solver. However, it requires us to convert the problem to a form that the API understands. Let us do that first.

Warning

The quantity transported from each plant to each market is always non-negative.

Now, we can go ahead and solve the cost minimization problem.

Conclusion

Optimizing transportation costs is crucial for businesses looking to improve their efficiency and bottom line. By formulating the transportation problem as a linear programming model and solving it with Python, companies can identify cost-effective strategies for distributing goods from plants to markets.

Python’s flexibility and powerful libraries, such as pulp, make it an excellent choice for tackling optimization problems. The interactive code examples in this post provide a hands-on approach for solving real-world transportation challenges.