Methods · Ranking
WEDBA (Weighted Euclidean Distance-Based Approach)
WEDBA ranks alternatives by their weighted Euclidean distance to two hypothetical points built from the best and worst value on every criterion; the alternative far from the worst and close to the best comes out on top.
Base method's data type: Classical
What Is the Method?
WEDBA is a method that orders alternatives into a single sequence once you already hold a decision table filled with numbers. Its output is a closeness score between 0 and 1 for every alternative and the rank that score produces. It takes weights from the user rather than generating them. The method was proposed by Rao for multicriteria selection problems in manufacturing settings and has been used in production-engineering decisions such as design, equipment and facility-layout selection. DecisionMind holds no extension of WEDBA; it works in its base form.
The Philosophy Behind It
The idea behind WEDBA is very close to TOPSIS's logic of closeness to the ideal, but the order in which distance is computed differs. The decision matrix is first equalised against its own magnitude, then weighted; the best and worst points are built from this weighted table. Each alternative's weighted Euclidean distance to these two hypothetical points is measured, and the ratio of its distance to the worst point over the total distance gives the final score. This idea's philosophical consequence is compensation: a weakness on one criterion can be offset by strength on another, because distance is a single figure into which every criterion's contribution combines.
How It Works
The method proceeds through six steps.
First, the decision matrix. The table of alternatives and criteria is taken as it stands.
Second, scale equalisation. Every column is divided by the square root of the sum of the squares of its own values, bringing criteria in different units onto the same scale.
Third, weighting. Every equalised column is multiplied by the criterion's weight.
Fourth, two hypothetical points. In the weighted table, the best value on each criterion (largest for a benefit, smallest for a cost) builds the ideal point, and the worst value builds the anti-ideal point.
Fifth, weighted Euclidean distance. Each alternative's distance to the ideal and to the anti-ideal is computed by taking the square root of the sum of the squared differences across the criteria.
Sixth, the closeness score. The alternative's distance to the anti-ideal is divided by the sum of the two distances. Alternatives are ordered by this score from highest to lowest.
The formulas behind each step, the intermediate tables and the citation formats are given on the DecisionMind method page; this card carries no formulas.
How to Read the Output
The closeness score tells you how near an alternative sits to the ideal relative to the other alternatives in this particular analysis, and nothing more. A score near 1 does not mean "flawless" but "the best in this set." It cannot be compared with a score from a different analysis, because the ideal and anti-ideal points are built afresh, in every analysis, from that analysis's own alternatives. A narrow score gap between two alternatives is not a robust ranking but one that is sensitive to the weights.
Thus instead of writing:
"WEDBA found the best alternative"
the report should read:
"With these weights and this alternative set, the alternative closest to the ideal is this one; the ranking is sensitive to the weight on these criteria"
Data Type and Inputs
WEDBA works with crisp data: one number per cell. You need alternatives in rows, criteria in columns, one number per cell, and no empty cells; direction information for every criterion; and criterion weights that sum to 1. WEDBA does not produce weights, it asks for them; you can derive them from expert opinion (AHP, BWM, SWARA) or from the data itself (Entropy, CRITIC). A minimum of two alternatives and two criteria is required.
When to Use It, When Not To
WEDBA is a sound choice if your criteria can be measured numerically, the table is completely filled, and you accept that a weakness on one criterion may be met by strength on another. Its typical territory is choosing equipment, suppliers and facility layout in a manufacturing setting; its logic does not depend on the field.
WEDBA is not suited to a case where no compromise at all is acceptable on one criterion; you should first screen out anything below the threshold and rank only what remains. Where criteria are strongly linked to one another, that link needs handling first, because WEDBA treats criteria as independent.
A numerical table, compensation accepted, the goal is ranking → WEDBA
Same logic, but I want closeness to the ideal measured by two ratios rather than a single distance → WEBIRA
No compromise allowed on one criterion, sub-threshold alternatives must be screened out → screening first, then ranking
Not a ranking but weights are needed → AHP, BWM, SWARA (subjective); Entropy, CRITIC (objective)
Strengths
WEDBA's strength is how easily it can be explained; the idea of closeness to the ideal and to the anti-ideal is simple to convey, and every step can be followed on the table. It brings criteria measured in different units into a single table, and its computational burden is small. Being from the same family as TOPSIS, it carries a logic familiar to production engineering and reads naturally to decision-makers in that field.
Weaknesses
Its limitations stem from the same structure as TOPSIS's. When the alternative set changes, the ideal and anti-ideal points shift, and an alternative added later can change the order of the others. The method is fully compensatory; a serious weakness on one criterion can be papered over by others. The form of scale equalisation affects the result; a different normalisation can give the same table a different order. The method treats criteria as independent; where criteria influence one another, weight is implicitly counted twice.
Common Mistakes
The most common mistake is marking criterion direction wrongly, which builds the ideal point from the wrong extreme and reverses the ranking. A second mistake is assigning equal weights without justification; equal weight means "all equally important" and must be defended in the report. A third is adding an alternative once the analysis is finished and being surprised the ranking shifts. A fourth is reading the closeness score as a percentage or a probability and comparing scores from different analyses.
The governing principle is this:
A WEDBA result is a consistent summary of the directions, weights and alternative set you supplied; if any input is contested, the ranking is contested too.
Cases
Each case opens with a decision table, describes in words what the method does to it, and shows how to read the result. The first case is an illustrative worked example. The remaining cases are illustrative constructions.
1. Food safety: Prioritising inspection across three food-processing plants
A food-safety authority must decide how to allocate its limited inspection resources among three processing plants. Three criteria apply: hygiene-inspection score, staff-training score, and complaint-resolution speed score over the past year; all three are treated as "higher is better." The authority set the weights at 0.40 for hygiene, 0.30 for training, and 0.30 for complaint resolution.
| Plant | Hygiene | Training | Complaint resolution |
|---|---|---|---|
| G1 | 3.0 | 2.0 | 5.0 |
| G2 | 1.0 | 5.0 | 4.0 |
| G3 | 4.0 | 3.0 | 3.0 |
| Direction | higher is better | higher is better | higher is better |
| Weight | 0.40 | 0.30 | 0.30 |
The method first equalises the three columns against their own magnitude, then multiplies by the weights. In the weighted table, an ideal plant (highest hygiene, highest training, highest complaint resolution) and an anti-ideal plant (the lowest values) are built. It then measures each plant's weighted Euclidean distance to these two hypothetical plants.
| Plant | Closeness score | Rank |
|---|---|---|
| G3 | 0.650 | 1 |
| G1 | 0.518 | 2 |
| G2 | 0.389 | 3 |
The result reads as follows. G3 is not the outright best on any single criterion, but it holds the highest value on hygiene, and this criterion carries the highest weight; this balance puts it ahead. G2, despite being best on training, finishes last, because it holds the lowest value on hygiene and hygiene carries a high weight.
The authority hesitates here: the gap between G3 and G1 is small. If the hygiene weight were lowered and the training weight raised, G2 would be expected to move ahead, since G2 is clearly the best plant on training.
In the report: "With the weights given, G3 is the plant closest to the ideal (0.650); the ranking may change if the hygiene weight is lowered and the training weight raised."
Source: this case is an illustrative worked example; the figures come from applying DecisionMind's engine's WEDBA steps to this small table.
2. Telecoms: Choosing a base-station maintenance contractor
A telecoms operator will choose among three contractors for base-station maintenance service. Three criteria apply: average response time (lower is better), annual contract fee (lower is better), and customer-satisfaction score (higher is better). The operator has set the weights to give the most to response time, and less to fee and satisfaction.
The method equalises the three columns, weights them, builds the ideal and anti-ideal contractor, and computes the weighted Euclidean distances. Suppose the result places the most expensive contractor first, because it clearly has the shortest response time and this criterion carries the highest weight.
The operator hesitates here: if a budget ceiling exists and the most expensive proposal exceeds it, WEDBA will not screen it out on its own; the fee has already been traded off against the other criteria. The proposal exceeding budget should be screened out before the analysis, and only the remaining proposals ranked.
In the report: "The budget ceiling was applied as a pre-screening criterion; the remaining proposals were ranked using the operator's weights."
3. Freight: Choosing a vehicle-fleet supplier for a distribution centre
A freight company will choose a vehicle-fleet supplier for a new distribution centre. Three criteria apply: fuel consumption (lower is better), load capacity (higher is better), and maintenance cost (lower is better). The company has set the weights to give more to fuel consumption and maintenance cost, and less to capacity.
The method builds the ideal and anti-ideal points for the three proposals and computes the weighted Euclidean distances. Suppose the result places first the proposal with low fuel consumption and low maintenance cost but moderate capacity.
The company hesitates here: fuel consumption and maintenance cost may be related to each other; vehicles that consume less fuel are typically newer and also come with lower maintenance cost. Giving high weight to both criteria separately could mean rewarding the same underlying feature twice.
In the report: "The possible relationship between fuel consumption and maintenance cost should be examined separately; the possibility that weighting both criteria highly double-counts the same feature should be kept in mind."
4. What Not to Do
Had the hygiene criterion in the same food-safety table been marked "lower is better," the ideal plant would have been built from the lowest hygiene score, and the ranking would become meaningless. A second error is the authority adding a fourth plant to the table once the analysis is finished; the ideal and anti-ideal points shift and the order of the first three can change. A third error is reporting G3's score of 0.650 as "65 per cent suitable"; the score only ranks these three plants relative to one another.
Sources
For the formulas behind each step, the intermediate tables and citation formats, see the DecisionMind method page: decisionmind.app/library/wedba
Rao, R. V., & Singh, D. (2012). Weighted Euclidean distance-based approach as a multiple attribute decision making method for manufacturing situations. International Journal of Multicriteria Decision Making, 2(3). DOI: 10.1504/ijmcdm.2012.047845
Rao, R. V. (2013). A Novel Weighted Euclidean Distance-Based Approach. In Decision Making in Manufacturing Environment Using Graph Theory and Fuzzy Multiple Attribute Decision Making Methods (2nd ed., pp. 159–191). Springer. DOI: 10.1007/978-1-4471-4375-8_5
Al Hawari, T., Naji, A., Alshraideh, H., & Bataineh, O. (2019). Extending the WEDBA to the fuzzy multi-criteria decision-making environment. International Journal of Computer Applications in Technology, 59(4), 330–346. DOI: 10.1504/ijcat.2019.099199
Triantaphyllou, E. (2000). Multi-Criteria Decision Making Methods: A Comparative Study. Applied Optimization, Vol. 44. Kluwer Academic Publishers. DOI: 10.1007/978-1-4757-3157-6