Methods · Distance
Euclidean Distance (Straight-Line Distance)
Euclidean distance reduces the overall difference between two alternatives to a single straight-line length, by squaring the difference on each criterion, summing the squares and taking the square root.
Base method's data type: Classical
What Is the Method?
When a decision method needs to summarise how far an alternative sits from the ideal in a single figure, the most commonly chosen route is Euclidean distance: the many-dimensional counterpart of the straight-line distance measured with a ruler in everyday life. The difference on every criterion between two points is squared, the squares are summed, and the square root of that sum is taken. Hwang and Yoon used this formula in 1981 for the distance to TOPSIS's ideal and anti-ideal points, and it has since become the most widely used distance measure in multi-criteria decision analysis. Euclidean distance is not a decision method in its own right; it is a building block used inside many distance-based ranking methods, TOPSIS foremost among them.
The Philosophy Behind It
The question behind Euclidean distance is this: should the difference between two alternatives be determined by the joint contribution of every criterion? Euclidean distance answers yes. The difference on each criterion is inflated by squaring, then all of them are summed; this lets large differences weigh disproportionately more than small ones, yet no single criterion is decisive on its own. This is a geometric outlook: every alternative is a point in a many-dimensional space, and the distance is the length of the straight line between two such points. It carries a philosophical consequence: Euclidean distance is compensatory. A large difference on one criterion is "offset" by aggregate similarity across many small ones, because the calculation blends every difference together.
How It Works
The procedure consists of a single step.
One step: the square root of the sum of squares. The difference on every criterion between two points is calculated, each difference is squared, the squares are summed, and the square root of that sum is taken. The result is the straight-line distance between the two points in the many-dimensional space.
This step is TOPSIS's fourth step: distance to the ideal and anti-ideal points is calculated with this formula. The formulas for each step are given on the DecisionMind method page; this card carries no formulas.
How to Read the Output
Euclidean distance is the overall difference between two alternatives reduced to a single figure; it does not show which criterion contributed how much to that difference. A small Euclidean distance need not mean "these two alternatives are similar on every criterion"; a large difference on a few criteria may have been numerically "offset" by similarity on the others. This value cannot be compared directly with a Euclidean distance taken from a different set of alternatives, because the scale is derived from that set's own values.
Thus instead of writing:
"The Euclidean distance is small, so these two alternatives are close to one another on every criterion"
it is correct to write:
"The overall difference between these two alternatives across criteria is small; this may also mean that a large difference on a single criterion has been offset by the others"
Data Type and Inputs
Works with crisp data: a single number per cell, no empty cells. It is usually calculated on a normalised and weighted table; used directly on raw data, a criterion with large units (price in millions, say) dominates the distance on its own (Milani et al., 2005).
This is a building-block card; it has no extension of its own (fuzzy, grey, intuitionistic version) within DecisionMind. Five further distance measures do the same job with different logic: Chebyshev distance, Manhattan distance, Minkowski distance, Hamming distance and Mahalanobis distance; each is described in its own building-block card. A minimum of two alternatives (or one alternative and one reference point) and one criterion suffices.
When to Use It, When Not To
Euclidean distance suits situations where compensation between criteria is accepted, where a weakness on one criterion may be offset by strength on another. It is the most extensively tested distance measure alongside widely used methods such as TOPSIS, and it works well when criteria are treated as independent.
It should not be used where no compromise can ever be made on one criterion, where the single worst case must be decisive; Euclidean distance does not apply such a threshold on its own, because it blends the contribution of every criterion together. Where criteria are strongly linked (one rising as another rises), that link needs handling first; Euclidean distance treats criteria as independent.
Compensation between criteria accepted, the overall difference matters → Euclidean distance
The single worst criterion deviation is decisive, no compensation → Chebyshev distance
A weighted sum of absolute differences across criteria is wanted → Manhattan distance
Criteria are correlated and this must be taken into account → Mahalanobis distance
Strengths
Euclidean distance's greatest strength is that it is intuitive; it is a direct extension of the everyday notion of straight-line distance and is easy to explain to a decision-maker. It is the most widely applied and tested distance measure, TOPSIS foremost among its uses (Behzadian et al., 2012, cited on the TOPSIS card). Its computational burden is small, and it runs at the same speed on large tables. Because it weights large differences disproportionately relative to small ones (owing to squaring), it makes marked deviations visible.
Weaknesses
It has limitations. First, the assumption of full compensation: a serious weakness on one criterion can be numerically papered over by others, an unwelcome property in some decision contexts. Second, it treats criteria as independent; where criteria influence one another, this implicitly miscounts the weighting. Third, when the set of alternatives changes (an alternative added or removed), the ideal and anti-ideal points shift, which can change the distances and hence the ranking; this phenomenon has been examined in detail for TOPSIS under the name rank reversal (García-Cascales and Lamata, 2012). Fourth, where measurement units or the spread of values differ greatly, Euclidean distance can highlight the wrong criterion; a normalisation step must therefore always be applied before Euclidean distance.
Common Mistakes
The most common mistake is calculating Euclidean distance on raw, unnormalised data; a criterion with large units, such as price, renders every other criterion meaningless. A second mistake is reading a small Euclidean distance as "similar on every criterion", when it is in fact an aggregate measure that can conceal individual criterion differences. A third mistake is using a Euclidean-based ranking in a situation where no compromise can ever be made on one criterion; an eliminating distance measure such as Chebyshev is needed instead of the compensatory Euclidean distance. A fourth mistake is adding an alternative once the analysis is finished and being surprised that the ranking changes as the ideal point shifts.
The governing principle is this:
Euclidean distance reduces the joint contribution of every criterion to a single figure; it is the right tool where compensation is accepted, and the wrong one where no compromise can be made on one criterion.
Cases
Each case opens with a decision table, describes in words what the method does to it, and shows how the result changes when a host method's choice of distance measure changes.
1. Engineering: Validating a straight-line distance between two points
This case describes not a real institution'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 squares the difference on every criterion: on D1, (3-5)²=4; on D2, (5-3)²=4; on D3, (4-2)²=4. The squares are summed: 4+4+4=12. The square root of the sum is taken: √12≈3.4641.
The result reads as follows: for the same two points, the Chebyshev distance is 2.0 (the single largest difference alone), while the Euclidean distance is 3.4641 (the joint contribution of all three differences). These two figures measure the same two points while answering two different questions; one answers "what is the worst difference", the other "what is the overall difference".
There is no hesitation here, because this is a distance-calculation validation, not a ranking.
In the report: "The Euclidean distance between the two points has been calculated as 3.4641."
Source: This example is DecisionMind's Euclidean-distance engine validation case; the formula rests on Hwang and Yoon's (1981) TOPSIS definition, but these particular two points are not taken from the book, and were constructed to test the engine.
2. Water Management: Choosing treatment-plant technology
A municipal water authority will choose among three technologies for a new treatment plant. The criteria are a treatment-efficiency score (weight 0.45), an operating-cost-efficiency score (weight 0.35, meaning low cost has already been converted into a high score) and an ease-of-maintenance score (weight 0.20); all are "higher is better".
| Technology | Efficiency (C1) | Cost efficiency (C2) | Maintenance (C3) |
|---|---|---|---|
| Technology 1 | 7 | 5 | 9 |
| Technology 2 | 4 | 9 | 5 |
| Technology 3 | 6 | 2 | 2 |
| Weight | 0.45 | 0.35 | 0.20 |
The authority proceeds by classical TOPSIS logic: it scales the data by vector normalisation, multiplies by the weights, builds the ideal and anti-ideal points, then calculates the closeness score using Euclidean distance. This gives 0.6161 for Technology 1, 0.6089 for Technology 2 and 0.2472 for Technology 3; the order is Technology 1, Technology 2, Technology 3, but the gap between Technology 1 and Technology 2 is only 0.0072.
Before trusting this narrow gap, the authority recalculates with the same ideal and anti-ideal points but switches the distance measure to Chebyshev distance. This time it gets 0.6349 for Technology 2, 0.5016 for Technology 1 and 0.2771 for Technology 3; the order reverts to Technology 2, Technology 1, Technology 3. Technology 1, first under Euclidean distance, falls to second under Chebyshev distance.
The reason is this: Technology 1's value on the cost-efficiency criterion (C2) is low, and it produces the single largest gap from the ideal in the weighted table on this criterion; Chebyshev distance looks only at this single worst gap. Euclidean distance, by contrast, lets Technology 1's superiority on treatment efficiency and maintenance offset this weakness.
In the report: "Under Euclidean distance, Technology 1 (0.6161) comes out ahead by a very narrow margin (0.0072); switching to Chebyshev distance moves Technology 2 ahead. The decision hinges on whether compensation between criteria is accepted."
3. E-Commerce: Choosing a warehouse automation system
An e-commerce company must choose one of three proposals for warehouse automation. The criteria are an order-picking-speed score, a low-error-rate score and an ease-of-installation score; all are "higher is better". The company calculates a TOPSIS closeness score using Euclidean distance, and two proposals' scores come out very close to one another.
The operations team hesitates here: they notice that one of the proposals is markedly weak on ease of installation, yet strong on speed and error rate. As in Case 2, they recognise that this weakness has been offset by the other two criteria under Euclidean distance, but that this offsetting could be misleading if installation time is operationally critical. The team decides to assess whether a separate lower bound on ease of installation should be set alongside the overall Euclidean-based score.
In the report: "Under Euclidean distance, the two proposals' scores come out close; the proposal that is weak on ease of installation has had this weakness offset by the other criteria, and a separate upper bound on installation time is therefore recommended."
4. What Not to Do
The first error is reporting the closeness score of 0.6161 in Case 2 as "Technology 1 is the most balanced overall"; this score is the compensated sum of every criterion and does not guarantee balance. The second error is declaring a firm superiority between Technology 1 and Technology 2 without questioning their narrow gap of 0.0072; first place changes hands once the distance measure switches to Chebyshev. The third error is calculating Euclidean distance on raw, unnormalised data; a criterion with large units renders every other criterion meaningless.
Sources
For the formulas behind each step and the intermediate tables, see the DecisionMind method page: decisionmind.app/library/dist-euclidean
Hwang, C. L., & Yoon, K. (1981). Multiple Attribute Decision Making: Methods and Applications, A State-of-the-Art Survey. Lecture Notes in Economics and Mathematical Systems, Vol. 186. Springer-Verlag. DOI: 10.1007/978-3-642-48318-9
García-Cascales, M. S., & Lamata, M. T. (2012). On rank reversal and TOPSIS method. Mathematical and Computer Modelling, 56(5-6), 123-132. DOI: 10.1016/j.mcm.2011.12.022
Milani, A. S., Shanian, A., Madoliat, R., & Nemes, J. A. (2005). The effect of normalization norms in multiple attribute decision making models: a case study in gear material selection. Structural and Multidisciplinary Optimization, 29, 312-318. DOI: 10.1007/s00158-004-0473-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
Behzadian, M., Khanmohammadi Otaghsara, S., Yazdani, M., & Ignatius, J. (2012). A state-of the-art survey of TOPSIS applications. Expert Systems with Applications, 39(17), 13051-13069. DOI: 10.1016/j.eswa.2012.05.056