Hello, if you have any need, please feel free to consult us, this is my wechat: wx91due
Computational Optimization
Problem 1
The following table specifies the weights and values per unit of five different products held in storage. The quantity of each product is unlimited.
Product (i) |
Weight per unit (wi) |
Value per unit (vi) |
1 | 7 | 9 |
2 | 5 | 4 |
3 | 4 | 3 |
4 | 3 | 2 |
5 | 1 | 0.5 |
A plane with a weight capacity of 13 is to be used, for one trip only, to transport the products. We would like to know how many units of each product should be loaded onto the plane to maximize the value of goods shipped.
Use dynamic programming to find the optimal solution. Please provide the following details (a) describe clearly the stages, (b) states, (c) allowable decisions at each state in each stage, etc. Finally, please state what the optimal quantity of each product to be loaded to the plane is.
Problem 2
Day |
Price |
1 | 7 |
2 | 3 |
3 | 2 |
4 | 8 |
5 | 11 |
6 | 9 |
7 | 5 |
8 | 10 |
9 | 6 |
10 | 4 |
It is the start of Day 1, and you do not own any shares. At the start of each day, you can either purchase one share or sell any shares that you have on hand (as many as you like, but not more than you own), or do nothing. Suppose that shares are worthless after Day 10 (the company goes bankrupt on Day 11). Your goal is to maximize profit over the 10-day period. Please solve the above problem by formulating a dynamic program following the steps below
Problem 3
A government space agency is conducting a research project on an engineering problem that must be solved before people can safely fly to Mars. Three independent research teams are currently trying three different approaches to solve this problem.
The probability that team 1 will fail to solve this problem is 0.40, the probability that team 2 will fail is 0.60, and the probability that team 3 will fail is 0.80. We say that the project fails if all three teams fail. So, currently, the probability that the project fails is 0.40 ∙ 0.60 ∙ 0.80 = 0.192.
Number of new scientists |
Probability of failure |
||
|
Team 1 |
Team 2 |
Team 3 |
0 |
0.40 |
0.60 |
0.80 |
1 |
0.20 |
0.40 |
0.50 |
2 |
0.15 |
0.20 |
0.30 |
3 |
0.10 |
0.17 |
0.25 |