Multi-criteria optimization. How to solve it?

In summary, the conversation discusses a problem involving three criteria and a decision on which car to purchase based on price, petrol consumption, and power. The simplex algorithm is suggested as a possible solution, but it is determined that the problem is not suitable for linear programming. Instead, other methods such as determining the "efficient" set, lexicographic ordering, and linear tradeoffs are suggested as potential approaches. It is also noted that there is no one "right" answer when dealing with multiple-criterion choices.
  • #1
Ted111
4
0
http://tinypic.com/r/1570ojk/9
Please see the image. I don't understand how to solve such a problem. It has three criteria. Any hints or guide would be appreciated or even a solution. This is actually just an example from the book, but the book doesn't even solve the question, so I don't even have an example that I can follow.

http://tinypic.com/r/1570ojk/9
http://tinypic.com/r/1570ojk/9
 
Physics news on Phys.org
  • #3
fresh_42 said:
Seems like the simplex algorithm could help.
Are you saying that I should make a matrix and solve that?
 
  • #4
I have not enough data to answer this. What exactly is your objective function, what are your constraints? I assumed they were linear and thus the simplex algorithm would be an appropriate method to solve it, as the value which you are looking for is in one of its vertices.

This is not really a question of general engineering so I'll move it to the homework section. But you are supposed to show some effort.
To describe exactly the task and what you know so far about optimization problems would be a good start.
 
  • #5
fresh_42 said:
I have not enough data to answer this. What exactly is your objective function, what are your constraints? I assumed they were linear and thus the simplex algorithm would be an appropriate method to solve it, as the value which you are looking for is in one of its vertices.

This is not really a question of general engineering so I'll move it to the homework section. But you are supposed to show some effort.
To describe exactly the task and what you know so far about optimization problems would be a good start.

Go to this link (Page 12-13):
http://www.math.hcmus.edu.vn/~nvthuy/om/Multicriteria%20Optimization.pdf
 
  • #6
Ted111 said:
Go to this link (Page 12-13):
http://www.math.hcmus.edu.vn/~nvthuy/om/Multicriteria%20Optimization.pdf

All I can come up with is that the decision variables are price, petrol consumption, and power.
 
  • #7
Ted111 said:
All I can come up with is that the decision variables are price, petrol consumption, and power.

No, that is not true; they are not decision variables, they are given input data items.

This problem is NOT one of linear programming, unless your decision variables are ##x_V## = fraction of a Volkswagen to purchase, etc. Thus, the simplex method would be of no use.

What you have is a "tradeoff" problem, which is to choose the car having the most desirable bundle of attribute values. Here, the attributes are price, consumption and power. For example, the attribute bundle for a Volkswagen is (16.2, 7.2, 66.0), which specifies the "score" that Volkswagen has on each of the three attributes. Presumably, the scoring system has been devised so that a higher score is better than a lower one, but we are not told that for sure. (Some hard work might have been done already to develop the scores, but we can just use them now as input for further analysis.)

Typical approaches to such problems are (i) determination of the "efficient" set (Pareto-optimality); (ii) Lexicographic ordering; and (iii) linear tradeoffs.

In (i) we try to cut down the decision space by eliminating choices that are dominated by others, so if ##s_{ij}## is the score of choice ##i## on attribute ##j## we eliminate choice ##b## if there is another choice ##a## that is uniformly better, that is, if ##s_{aj} \geq s_{bj}## for all ##j## and at least one of these inequalities is strict.

In (ii), we assign priorities to the three attributes, and then order the choices so that choice ##a## is better than choice ##b## if ##s_{a1} > s_{b1}## or ##s_{a1}= s_{b1}## and ##s_{a2} > s_{b2}##, etc.

In method (iii) we assign "weights" ##w_j > 0## to attributes ##j = 1,2,3## and then evaluate ##S_i = w_1 s_{i1} + w_2 s_{i2} + w_3 s_{i3}## for each choice ##i##. We then take the one having the highest ##S_i##, using some other criterion/criteria for tie-breaking if two or more have the same ##S##-value. Since the choice of weighs is highly personal---how important to you is price vs. power, etc.---there is no convincing "right" answer. Mr. Smith may make one choice that is optimal for him while Ms. Jones may make another, and neither can argue convincingly that the other is wrong. Unfortunately, that's life when multiple-criterion choices are encountered, unless you are working for a corporation that essentially tells you what weights to use when making a decision.
 
Last edited:
  • Like
Likes berkeman and Ted111
  • #8
Ray Vickson said:
No, that is not true; they are not decision variables, they are given input data items.

This problem is NOT one of linear programming, unless your decision variables are ##x_V## = fraction of a Volkswagen to purchase, etc. Thus, the simplex method would be of no use.

What you have is a "tradeoff" problem, which is to choose the car having the most desirable bundle of attribute values. Here, the attributes are price, consumption and power. For example, the attribute bundle for a Volkswagen is (16.2, 7.2, 66.0), which specifies the "score" that Volkswagen has on each of the three attributes. Presumably, the scoring system has been devised so that a higher score is better than a lower one, but we are not told that for sure. (Some hard work might have been done already to develop the scores, but we can just use them now as input for further analysis.)

Typical approaches to such problems are (i) determination of the "efficient" set (Pareto-optimality); (ii) Lexicographic ordering; and (ii) linear tradeoffs.

In (i) we try to cut down the decision space by eliminating choices that are dominated by others, so if ##s_{ij}## is the score of choice ##i## on attribute ##j## we eliminate choice ##b## if there is another choice ##a## that is uniformly better, that is, if ##s_{aj} \geq s_{bj}## for all ##j## and at least one of these inequalities is strict.

In (ii), we assign priorities to the three attributes, and then order the choices so that choice ##a## is better than choice ##b## if ##s_{a1} > s_{b1}## or ##s_{a1}= s_{b1}## and ##s_{a2} > s_{b2}##, etc.

In method (iii) we assign "weights" ##w_j > 0## to attributes ##j = 1,2,3## and then evaluate ##S_i = w_1 s_{i1} + w_2 s_{i2} + w_3 s_{i3}## for each choice ##i##. We then take the one having the highest ##S_i##, using some other criterion/criteria for tie-breaking if two or more have the same ##S##-value. Since the choice of weighs is highly personal---how important to you is price vs. power, etc.---there is no convincing "right" answer. Mr. Smith may make one choice that is optimal for him while Ms. Jones may make another, and neither can argue convincingly that the other is wrong. Unfortunately, that's life when multiple-criterion choices are encountered, unless you are working for a corporation that essentially tells you what weights to use when making a decision.

Thanks! Ray. That information helps.
 

Related to Multi-criteria optimization. How to solve it?

1. What is multi-criteria optimization?

Multi-criteria optimization is a mathematical approach to decision-making that involves finding the best possible solution to a problem with multiple conflicting criteria or objectives. It aims to find a compromise solution that satisfies all criteria to the greatest extent possible.

2. What types of problems can be solved using multi-criteria optimization?

Multi-criteria optimization can be applied to a wide range of problems in various fields such as engineering, economics, and management. It can be used to solve problems involving resource allocation, project scheduling, portfolio management, and many others.

3. What are the steps involved in solving a multi-criteria optimization problem?

The steps involved in solving a multi-criteria optimization problem include identifying the criteria and their relative importance, defining the decision alternatives, constructing a mathematical model, and using an optimization algorithm to find the best solution.

4. How do you determine the criteria and their weights in a multi-criteria optimization problem?

The criteria and their weights can be determined through a variety of methods such as expert opinion, surveys, and statistical analysis. It is important to involve stakeholders in the decision-making process to ensure that all relevant criteria are considered and their weights accurately reflect their preferences.

5. What are some common techniques used to solve multi-criteria optimization problems?

Some common techniques used to solve multi-criteria optimization problems include linear programming, goal programming, and evolutionary algorithms. Each technique has its own advantages and limitations, and the most suitable one will depend on the specific problem at hand.

Similar threads

  • Calculus and Beyond Homework Help
Replies
1
Views
593
  • Calculus and Beyond Homework Help
Replies
2
Views
3K
  • Calculus and Beyond Homework Help
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
4
Views
785
Replies
5
Views
2K
  • Calculus and Beyond Homework Help
Replies
9
Views
2K
  • Calculus and Beyond Homework Help
Replies
1
Views
901
  • Mechanics
Replies
0
Views
2K
Replies
7
Views
593
Back
Top