Using Analytic Hierarchy with Supplychainpy

by Kevin Fasusi |

Introduction

Thomas Saaty (Saaty, 1990) developed the Analytic Hierarchy Process (AHP). The AHP structures a decision problem by comparing a set of similar alternative options (e.g. alternative haulage vehicles, suppliers, warehouse assets etc.) against different criterion (e.g. safety, reliability, maintainability and cost) to identify the superior choice in a logically consistent manner.

The criterion for evaluation can be qualitative or quantitative. Relative scales and pairwise comparisons as ratios are used to derive weights and priorities. The resulting weights are used to obtain a score for each option in regards to a criterion, combining the scores for a global for all the criteria.

In summary, the AHP, therefore, requires the decision maker to:

  • State clearly the objective.
    • e.g. Select a new haulage vehicle for addition to the fleet.
  • Define the criteria.
    • e.g. style, reliability, comfort and fuel economy
  • Shortlist the alternatives options.
    • e.g. Scania, Iveco, Navistar and Volvo

Implementation

The AHP requires several steps which can be summarised as:

  1. Computing the eigenvector for the criteria.
  2. Computing the matrices for the alternative options
  3. Computing the eigenvector for the alternative options
  4. Ranking the alternative option.

Computing the Eigenvector for the Criteria

Creating a pairwise comparison matrix allows for the expression of the relative importance of one criterion over another (Haas and Meixner, 2005). The array is populated using relative scores measured on a scale from 1 to 9. The table below represents that ‘fundamental scale’ used in scoring the criterion and is taken directly from Saaty (1990, pp15).

Importance   Definition   Explanation  
1 Equal importance   Two activities contribute equally to the objective
3 Moderate importance of one over another   Experience and judgement strongly favor one activity over another
5 Essential or strong importance Very strong importance   Experience and judgement strongly favor one activity over another
7 Very strong importance   An activity is strongly favored and dominance demonstrated in practice
2,4,6,8 Intermediary values between adjacent judgments   when compromise is needed
9 Extreme importance   highest possible order of affirmation

Pairwise Comparison Matrix

To compute the eigenvector for the criteria, the matrix of size is required where is the number of criteria. Matrix is populated with values for where denotes the entry for the th row and th column:

Let’s walk through an illustrative example, continuing with the decision we proposed in the summary of the AHP in the second paragraph of the introduction.

We are an international logistics company, and we are making the decision between several alternative options for a new vehicle for our fleet of vehicles responsible for trunking between national distribution centres (NDC), based on the criteria:

  • style
  • reliability
  • fuel economy
  • comfort

Based on our judgement fuel economy is the most important for the Euro touring vehicles in our fleet, followed closely by reliability because maintenance costs are a b…bother and these bad boys will be putting in some mileage. Comfort is a concern because driving several hours between stops should feel comfortable. We covet reliability over style and are not too fussed about what the other drivers think of the rig, so style is a distant consideration at fourth place (look we’ll just get a bunch of flames or my little pony decals to pimp the ride). So based on these priorities we can make the following judgement:

  1. Fuel economy is 7 times more important than style.
  2. Reliability is 2 times less important than Fuel economy.
  3. Fuel economy is 7 times more important than comfort (#harsh).
  4. Fuel economy is 9 times more important than style.

Below the array matrix for the criteria scores the criteria in the following order top to bottom left to right: fuel economy, reliability, comfort and style.

For each entry where we compare (row) to (column), if then the th criterion is more important that th criterion, while if then the the criterion is more important. Now we add the reciprocal scores and complete our pairwise matrix.

Any given entry should satisfy the following constraint . For example the score for against or , implying as we stated above that fuel economy is more important than reliability. The reciprocal is reliability against fuel economy, scored at entry the reciprocal of the previous rating. This scoring is consistent and meets the constraint as .

Also, notice how always equal 1, this is because each criterion is as important as itself. Now we convert to decimals:

Calculate the ranking by squaring the pairwise matrix:

We now sum each row and then sum the row totals.

The total for the sum of each row is 213.402. We normalise by dividing the sum of each row by the total 213.402 and we get our eigenvector () for the criteria:

If you consider how we prioritised the criteria, it makes sense that fuel economy represented by the first value in the array scores higher than all the others and style (at the bottom) the least. Several iterations of squaring the pairwise matrix and computing an eigenvector are necessary until the current solution no longer differs from the previous iteration.

Now we move onto computing the matrices for the alternative options. You can begin to see why the AHP can become onerous when calculated by hand or in a spreadsheet.

Computing the Matrices for the Alternative Options

For each criterion (style, reliability, comfort and fuel-economy), we construct a pairwise comparison matrix scoring each alternative option (Scania, Iveco, Navistar, Volvo) against each other. These comparisons are for illustration and are not indicative of the manufacturer’s product.

Reliability:

Comfort:

Style:

We compute the eigenvector for each as we did before for the criteria is the pairwise matrix and the corresponding eigenvector:

Fuel-economy is treated slightly differently since the values are in mpg an objective value. If we accept that the following mpg for each vehicle: Scania 11 mpg, Iveco 9 mpg, Navistar 10 mpg, Volvo 12 mpg, we can normalise these values and create a ranking:

Computing the eigenvector for the alternative options

Now we can compute the eigenvector for the alternatives by combining them into a matrix and multplying by the criteria weight computed earlier. So .

is multiplied by the previously calculated weights for the criteria where the global vector for all scores.

The resulting vector can be ranked and will indicate the best choice:

Ranking the Alternative Options

The clear winner, when ranked, is the Volvo (nb: remember the initial order of the comparisons was Scania, Iveco, Navistar and Volvo).

The cost of each vehicle may also be taken into consideration using a cost-benefit ratio.

AHP using Supplychainpy

As of release 0.0.4, Supplychainpy will have the facility for computing the AHP of a given set of criteria and alternative options. In the libraries implementation, the objective (quantitative) criteria are identified separately from the subjective scores. The differentiation allows the construct of normalised weights based on raw values as opposed to scores in keeping with Saaty (1990) Only the scores for the comparison of to are required, the reciprocals are computed as part fo the function.


lorry_cost = {'scania': 55000, 'iveco': 79000, 'volvo': 59000, 'navistar': 66000}
criteria = ('style', 'reliability', 'comfort', 'fuel_economy')
criteria_scores = [
                   (1 / 1, 2 / 1, 7 / 1, 9 / 1), 
                   (1 / 2, 1 / 1, 5 / 1, 5 / 1), 
                   (1 / 7, 1 / 5, 1 / 1, 5 / 1),
                   (1 / 9, 1 / 5, 1 / 5, 1 / 1)
                   ]
                   
options = ('scania', 'iveco', 'navistar', 'volvo' )
option_scores = {
    'style': [
              (1 / 1, 1 / 3, 5 / 1, 1 / 5), 
              (3 / 1, 1 / 1, 2 / 1, 3 / 1),
              (1 / 3, 1 / 5, 1 / 1, 1 / 5),
              (5 / 1, 1 / 3, 5 / 1, 1 / 1)
              ],
    'reliability': [
                    (1 / 1, 1 / 3, 3 / 1, 1 / 7), 
                    (3 / 1, 1 / 1, 5 / 1, 1 / 5), 
                    (1 / 3, 1 / 5, 1 / 1, 1 / 5),
                    (7 / 1, 5 / 1, 5 / 1, 1 / 1)
                    ],
    'comfort': [
                (1 / 1, 5 / 1, 5 / 1, 1 / 7), 
                (1 / 5, 1 / 1, 2 / 1, 1 / 7), 
                (1 / 3, 1 / 5, 1 / 1, 1 / 5),
                (7 / 1, 7 / 1, 5 / 1, 1 / 1)
                ],
    'fuel_economy': (11, 9, 10, 12)
    }
lorry_decision = analytical_hierarchy_process(criteria=criteria, 
                                              criteria_scores=criteria_scores,
                                              options=options,
                                              option_scores=option_scores,
                                              quantitative_criteria=('fuel_economy',),
                                              item_cost=lorry_cost)

generates the following results:

{'analytical_hierarchy': {'iveco': 0.20541585500041709, 'scania': 0.21539971200341132, 'volvo': 0.5677817531137912, 'navistar': 0.011402679882380324}, 'cost_benefit_ratios': {'iveco': 0.67345198031782316, 'scania': 1.0143368256160643, 'volvo': 2.4924656619741006, 'navistar': 0.044746880144492483}

Conclusion

The Analytic Hierarchy Process (AHP) provides a systematic way of structuring decisions using objective and subjective criterion using weights and priorities. Implementing the AHP can be summarised in four steps:

  1. Computing the eigenvector for the criteria.
  2. Computing the matrices for the alternative options
  3. Computing the eigenvector for the alternative options
  4. Ranking the alternative option.

The supplychainpy library (as of release 0.0.4) supports this computation.

References

Saaty, T.L., 1990. How to make a decision: the analytic hierarchy process. European journal of operational research, 48(1), pp.9-26.

Haas, R. and Meixner, O., 2005. An illustrated guide to the analytic hierarchy process. Institute of Marketing & Innovation, University of Natural Resources and Applied Life Sciences, Vienna, pp.10-13.

Read More: