Methods · Distance
Chebyshev Distance (The Worst Single-Criterion Difference)
Chebyshev distance is a distance measure that gauges the distance between two alternatives not by the sum of all criteria but solely by the single largest criterion difference.
Base method's data type: Classical
What Is the Method?
When a decision method wants to measure how far an alternative sits from the ideal, it must choose how to calculate that distance. Chebyshev distance is one such choice: it finds the difference between two points on every criterion in turn and takes only the largest of these as the distance, disregarding every other difference. Named after the 19th-century mathematician Pafnuty Chebyshev, this measure is also known in mathematics as the "L-infinity norm," and rests on the same formula as "chessboard distance," which measures how many moves a piece needs to travel from one square to another (Rosenfeld and Pfaltz, 1968). Among the studies that brought this measure into multi-criteria decision analysis is Yu's (1973) work on compromise solutions for group decision problems; the VIKOR method uses this distance directly in calculating its "individual regret" component (the R value) (Opricovic and Tzeng, 2004). Chebyshev distance is not, on its own, a decision method; it is a building block used within distance-based methods such as TOPSIS and VIKOR as an alternative to Euclidean distance.
The Philosophy Behind It
The question behind Chebyshev distance is this: "Should the difference between two alternatives be determined by a single worst-case criterion, or by the combined contribution of all criteria?" Chebyshev distance chooses the former path. Even if an alternative sits very close to the ideal on nine criteria, if a large deviation exists on the tenth, Chebyshev distance sees only that tenth deviation; the closeness on the other nine criteria never changes the distance at all. This is a wholly non-compensatory (eliminatory) outlook, resting on the logic that "the weakest link determines the chain." Unlike Euclidean distance, poor performance on one criterion is never offset by good performance on another.
How It Works
The procedure consists of a single step.
The single step, finding the largest difference. Between two alternatives (or an alternative and an ideal point), the difference on every criterion is calculated separately, the absolute value of each difference is taken, and the largest is chosen as the distance. Every other criterion difference plays no part in the calculation at all.
This step can be substituted for Euclidean distance in a ranking method's (such as TOPSIS or VIKOR) calculation of distance to the ideal and anti-ideal points. The formulas behind each step are given on the DecisionMind method page; this card carries no formulas.
How to Read the Output
Chebyshev distance gives the worst single-criterion difference between two alternatives; it is not a measure of total difference. A small Chebyshev distance does not mean "these two alternatives are close on every criterion," only that "even on the criterion where they diverge most, the difference is small." Equally, a large Chebyshev distance can also arise when the alternatives are similar on most criteria and diverge sharply on only one. This value cannot be directly compared with a value obtained from a different set of alternatives or a different distance measure (Euclidean, Manhattan).
Thus instead of writing:
"The Chebyshev distance is small, meaning these two alternatives are generally very similar"
the report should read:
"The difference on the single criterion where these two alternatives diverge most is small; the similarity or difference on the other criteria is not reflected in this figure"
Data Type and Inputs
It works with crisp data: a single number in every cell, no empty cells. It is generally calculated on a table that has first been normalised and weighted for use in a subsequent step; used directly on raw data, a single large-unit criterion (price, say) determines the whole distance on its own.
This is a building-block card; DecisionMind holds no extension (fuzzy, grey, intuitionistic version) of its own for it. Five other distance measures perform the same task by a different logic: Euclidean distance, Manhattan distance, Minkowski distance, Hamming distance and Mahalanobis distance; each is described on its own building-block card. At least two alternatives (or one alternative and one reference point) and at least one criterion are sufficient.
When to Use It, When Not To
Chebyshev distance is appropriate where the worst case is decisive, that is, where a large deviation on one criterion must never be offset by the others. In methods such as VIKOR, which weigh both the total and the worst case together, it is used directly to calculate the worst-case component.
The situation in which it should not be used is one where the combined contribution of all criteria matters, and a slight deviation on one criterion should not overshadow the overall performance on the others; in such a situation Chebyshev distance causes a loss of information, because it disregards all data except the worst criterion.
The worst-criterion deviation is decisive, no compensation wanted → Chebyshev distance
The combined contribution of all criteria matters, compensation is accepted → Euclidean distance
The weighted sum of absolute differences across criteria is wanted → Manhattan distance
There is correlation between criteria and it must be accounted for → Mahalanobis distance
Strengths
Chebyshev distance's most important strength is that its calculation is very simple and directly interpretable: the result is directly the answer to the question "what is the difference on the worst criterion." It prevents criteria with very strong performance from masking one with poor performance, a property that matters in safety- or threshold-focused decisions. Its computational load is very small and it runs just as fast on large tables.
Weaknesses
Its limitations arise from this same property. First, all information other than the largest difference is disregarded; if two alternatives show a large difference on nine criteria and a small difference on one, Chebyshev distance sees only one of those nine large differences and ignores the other eight. Second, a measurement error or an outlier on a single criterion can determine the entire distance calculation on its own; this creates a particular fragility in the method. Third, two alternatives with the same Chebyshev distance can have very different profiles, which complicates interpretation. Fourth, there is no single founding paper specific to MCDM for the concept known as "Chebyshev distance"; the concept was borrowed from mathematics (Rosenfeld and Pfaltz, 1968) and carried into decision analysis afterwards (Yu, 1973; Opricovic and Tzeng, 2004).
Common Mistakes
The most common mistake is interpreting Chebyshev distance in the same way as Euclidean distance, that is, saying "a small distance means generally similar," when in fact Chebyshev distance sees only a single criterion. A second mistake is calculating Chebyshev distance directly on raw (non-normalised) data; a single large-unit criterion (price in millions, say) renders every other criterion meaningless and determines the distance on its own. A third mistake is giving only the number without reporting which criterion the Chebyshev distance came from; a decision-maker cannot interpret this number without knowing which criterion was decisive.
The governing principle is this:
Chebyshev distance measures only the worst single-criterion difference; if which criterion determines this difference is not reported clearly, the figure alone is misleading.
Cases
Each case begins with a decision table, describes in words what the method does to it, and shows how a host method's result changes when the choice of distance measure changes.
1. Engineering: validating the largest criterion difference between two points
This case describes not a real organisation's decision but DecisionMind's own engine validation example. Two points are compared on three criteria.
| Point | D1 | D2 | D3 |
|---|---|---|---|
| a | 3.0 | 5.0 | 4.0 |
| b | 5.0 | 3.0 | 2.0 |
The method finds the absolute value of the difference on every criterion: on D1, |3-5|=2; on D2, |5-3|=2; on D3, |4-2|=2. Because the difference comes out equal (2.0) on all three criteria, the Chebyshev distance is this equal value itself, 2.0.
The result reads as follows: in this particular example, because the difference is equal across all three criteria, the difference between Chebyshev and Manhattan (the total absolute difference, here 6.0) and Euclidean distance (here 3.4641) lies only in the calculation method; which criterion is "worst" is not apparent, because all three are equal. With different criterion values this equality breaks, and Chebyshev distance then reflects only the single largest difference.
There is no hesitation here, because this is a distance-calculation validation, not a ranking.
In the report: "The largest single-criterion difference between the two points has been calculated as 2.0."
Source: This example is DecisionMind's own validation example for the Chebyshev distance engine. The manifest's source record (Roy, 1991) could not be confirmed in an independent search; the DecisionMind team is reviewing this record. The concept's origin in mathematics and its transfer into decision analysis are described separately in this card's "What Is the Method?" section.
2. Fire Service: choosing a new fire appliance
A fire service is comparing three vehicle models to add to its fleet on three criteria: water-capacity score (weight 0.50), speed of arrival on scene score (weight 0.30) and equipment-fit-out score (weight 0.20). All three have been scored by expert assessment and all are "higher is better."
| Vehicle | Capacity (C1) | Speed (C2) | Equipment (C3) |
|---|---|---|---|
| Vehicle 1 | 2 | 6 | 3 |
| Vehicle 2 | 1 | 9 | 8 |
| Vehicle 3 | 2 | 3 | 1 |
| Weight | 0.50 | 0.30 | 0.20 |
The service first proceeds with classical TOPSIS logic: it scales the data by vector normalisation, multiplies by the weights, builds the ideal point (each criterion's best weighted value) and the anti-ideal point, then calculates a closeness score using Euclidean distance. This gives Vehicle 2 a score of 0.5782, Vehicle 1 0.5745 and Vehicle 3 0.4218; the order is Vehicle 2, Vehicle 1, Vehicle 3, but the gap between Vehicle 2 and Vehicle 1 is only 0.0037.
Before trusting this narrow gap, the service recalculates with the same ideal and anti-ideal points, switching only the distance measure to Chebyshev distance. This time Vehicle 1 gives 0.5891, Vehicle 3 0.5060 and Vehicle 2 0.4941; the order reverts to Vehicle 1, Vehicle 3, Vehicle 2. Vehicle 2, first under Euclidean distance, drops to last under Chebyshev distance.
The reason is this: Vehicle 2's value on the capacity criterion (C1) is the lowest, and in the weighted table this produces the largest single difference from the ideal on that criterion; Chebyshev distance looks only at this single worst difference and does not count Vehicle 2's superiority in speed and equipment as compensation. Euclidean distance, by contrast, weighed the differences across all three criteria together, so this superiority was reflected in the overall score.
In the report: "Under Euclidean distance, Vehicle 2 (0.5782) comes ahead by a very narrow margin (0.0037); switching to Chebyshev distance, Vehicle 2 falls to last place owing to its weakness in water capacity, and Vehicle 1 moves ahead. Where no compromise on water capacity is acceptable, a Chebyshev-distance-based assessment should be preferred."
3. Telecommunications: choosing base-station equipment
A telecommunications company is choosing among three equipment quotations for its new base stations. The criteria are coverage-area score, data-speed score and energy-consumption efficiency score; all are "higher is better." The company calculates a TOPSIS-like closeness score using Euclidean distance, and two of the quotations come out very close in score.
The technical team hesitates here: they notice that one of the quotations is seriously weak on energy efficiency, though strong on the other two criteria. As in case 2, they anticipate that switching to Chebyshev distance would fail to compensate for this single weak criterion, and that this quotation could fall back in the ranking. Because the company has a network-wide minimum-threshold policy on energy efficiency, the team decides to run a Chebyshev-based check calculation alongside the Euclidean-based overall score.
In the report: "Under Euclidean distance the two quotations' scores came out close; the quotation weak in energy efficiency falls back under the Chebyshev-distance-based check calculation, and network energy-policy compliance has therefore been applied as a separate screening criterion."
4. What Not to Do
The first error is reporting the closeness score of 0.5891 that came from Chebyshev distance in case 2 as "Vehicle 1 is generally the most balanced vehicle"; this score rests only on the worst single-criterion difference, it measures a threshold, not a balance. The second error is declaring the narrow gap of 0.0037 under Euclidean distance a certain superiority without question; switching to Chebyshev distance, first place changes hands entirely, with the previous leader even falling to last. The third error is calculating Chebyshev distance on raw (non-normalised) data; a single large-unit criterion (cost in millions, say) renders every other criterion meaningless.
Sources
For the formulas and the intermediate tables, see the DecisionMind method page: decisionmind.app/library/dist-chebyshev
Rosenfeld, A., & Pfaltz, J. L. (1968). Distance functions on digital pictures. Pattern Recognition, 1(1), 33-61. DOI: 10.1016/0031-3203(68)90013-7
Yu, P. L. (1973). A class of solutions for group decision problems. Management Science, 19(8), 936-946. DOI: 10.1287/mnsc.19.8.936
Opricovic, S., & Tzeng, G. H. (2004). Compromise solution by MCDM methods: A comparative analysis of VIKOR and TOPSIS. European Journal of Operational Research, 156(2), 445-455. DOI: 10.1016/S0377-2217(03)00020-1
Amirteimoori, A., & Soufi, M. (2026). Distance-Based Techniques in MCDM. In Multiple Criteria Decision Making: Industrial Decision Analysis. DOI: 10.1007/978-3-032-24299-0_4