logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Eliana HubbardNursing
(5/5)

653 Answers

Hire Me
expert
Diksha DuaData mining
(5/5)

755 Answers

Hire Me
expert
Sandeep KumarStatistics
(/5)

674 Answers

Hire Me
expert
Martin ClarkMarketing
(5/5)

644 Answers

Hire Me
R Programming
(5/5)

You are the project manager of this project, write a brief note for you manager, in which you indicate which decisions need to be taken and why

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Assignment 1

This assignment is an individual assignment and should be made individually. Do not copy or share code from/to others. The same holds for your report. Make it on an individual basis.

Hand in a .pdf on Canvas containing your answers to the questions and submit your R-code. Do not put them all together in a zip-file but upload the documents separately. The Deadline is June 17th, 2022. To pass this course you need at least a grade of 4.5 for this assignment. Thus, if your grade is lower than 4.5, you must go for the improvement option to pass the course. If your grade for this assignment is lower than 5.5 (but higher than 4.5), you have an option to improve your assignment. The deadline to hand in the improvement option is 7 days after the grades of this assignment are released.

This assignment sums up to 100 point. Your grade can be computed by dividing your total points by

10. Note that, following the grading guidelines, the grade will be rounded to one decimal.

 

 

Question 1: Project management

In knowledge clip 2.6 of week 2 a project management example is introduced. The video started with: “what do you need to do?”.

1. (35 points) You are the project manager of this project, write a brief note for you manager, in which you indicate which decisions need to be taken and why. Please answer this question by solving this problem with (Integer) Linear programming in R. Note that you are assumed to program it in R in an efficient way (e.g. using loops), manually typing in all constraints can lead to a maximum reduction of 15 points.

 

In the video, this problem was introduced as an integer linear program. We can also assume that all decision variables are continuous, especially in case the fine of 70 euros per day is paid by the second (e.g. if the project is ready in 6.2 days, the fine is 6.2x70).

2. (10 points) Solve the problem as a (continuous) linear program, does the solution change? Could you explain why (not)?

3. (10 points) Can you come up with situations in which you expect a difference between the linear and integer linear program of this problem?

4. (20 points) Your manager is a bit worried due to some uncertainties which may arise in the coming days. Perform a sensitivity analysis. Report all the information, in easy language, that you can get from this sensitivity analyses.

 

Hints:

To make your computations more straightforward, you can leave the “fixed” cost ∑6

 

 

π‘π‘šπ‘–π‘–π‘› which is

 

equal to 250 out of the LP and just add them in the last line of your code to the objective function value of the LP.

In the video we start to count from 𝑖𝑖=0 to 7, for convenience we have changed that in the assignment to 𝑖𝑖=1 to 8 (also in my explanations below).

You have a total of 16 variables (8 π‘₯ variables and 8 𝑦 variables). Let us from now on consider that the first 8 values relate to the π‘₯ variables and the second 8 variables to the 𝑦 variables. The LP solver requires you to give a parameter for each of these 16 variables for each constraint and for the objective function.

For example, for the objective function you must insert a vector ‘v’ with 16 numbers. You have to put a 0 for each variable which is not present in your objective. E.g. v[1]<-0, as π‘₯1 is not present in the objective and v[10]<- π‘Ž2=40 as 𝑦2 (the 10th variable refers to 𝑦2) is multiplied in the objective with π‘Ž2.

As another example, one of the constraints for the problem is:

π‘₯3 ≥ π‘₯2 + π‘Ÿ2 − 𝑦2

As said in one of the clips, we like to put all variables in the left-hand side part of the constraint and all parameters in the right-hand side. Most solvers, including the one we use in R have a hard requirement on this. Therefore, we need to transform this constraint into:

−π‘₯2 + π‘₯3 + 𝑦2 ≥ π‘Ÿ2

Then the coefficient vector of this constraint is:

[0, -1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0] and this should be added as constraint with right hand side

π‘Ÿ2 and sign >=.

So, for each constraint you add, you must perform the following steps:

Add (use the combine function) the coefficient vector of this constraint to the matrix with all coefficient vectors. Which you add, once completed, as constraint matrix (f.con).

Add (use the combine function) the sign of the constraint (>= or <=, or ==) to the vector of all signs. Which you add, once completed, as sign vector (f.dir).

Add (use the combine function) the value of the right-hand side to the vector of all right-hand side values. Which you add, once completed, as RHS vector (f.rhs).

Last hint on the logic of adding the predecessor constraints:

For each activity 𝑗𝑗, check for each other activity 𝑖𝑖 whether it is a predecessor of 𝑗𝑗 (you can use the last 8 columns for this in the dataset where row 𝑗𝑗 column 𝑖𝑖 indicates whether 𝑖𝑖 is a predecessor of 𝑗𝑗) if so, add the constraint with the coefficient vector as discussed above. You can get the location of the 𝑦𝑖𝑖 variable of activity 𝑖𝑖 by v[i+8].

 

Question 2: Using travel duration in transportation problems.

Consider that you are a manager of the planning department of a transportation company. Your employee is struggling with the transportation plan for next week. So far, your company has used a strategy to determine routes based on shortest travel distance. It seems that these routes do not always perform well in terms of travel time. Therefore, you decide that from now on your department will make use of travel times (instead of distances) to determine the routes. A disadvantage of this is that it is sometime worthwhile to consider a detour between customers, meaning that you must evaluate the travel times on all possible detours.

You have 30 customers and you know all direct travel times between each pair of customers as indicated in the attached table as Duration_Matrix.csv. Element (𝑖𝑖, 𝑗𝑗) in this table refers to the direct travel time in minutes from customer 𝑖𝑖 (row 𝑖𝑖) to customer 𝑗𝑗 (column 𝑗𝑗). Note that the duration can be different depending on the direction a truck is travelling, for example due to one-way roads, different traffic conditions etc. Therefore, in general, element (𝑖𝑖, 𝑗𝑗) is not equal to element (𝑗𝑗, 𝑖𝑖).

As you can see in the table, sometimes a detour is worthwhile. The direct travel time from customer 5 to customer 4 is equal to 248 minutes. However, going from customer 5 first to customer 2 (91 minutes) and then from customer 2 to customer 4 (137 min) is equal to a total of 228 minutes and thus shorter. A tour from customer 5 via customer 3 to customer 4 is even 220 minutes. Maybe a detour via 2 other customers is even shorter etc. Finding this out by hand for all possible pairs of customers will be impossible.

Luckily, you know someone who has studied dynamic programming in her prescriptive analytics course and she came up with the following idea:

Let 𝐷𝑖𝑖,𝑗𝑗,π‘˜ be the shortest (in duration) path between customer 𝑖𝑖 and 𝑗𝑗, using only nodes 0 to π‘˜ as intermediaries.

Observation: the shortest path from customer 𝑖𝑖 to 𝑗𝑗, using only nodes 0 to π‘˜ as intermediates should either not contain π‘˜ as intermediate node or should contain π‘˜ as intermediate node.

 

(5/5)
Attachments:

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. ThisΒ  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme