Presentation is loading. Please wait.

Presentation is loading. Please wait.

Part 1 Overview, introduction, examples What is Operations Research? What is Optimization What is Sequential Decision Making? What is Dynamic Programming?

Similar presentations


Presentation on theme: "Part 1 Overview, introduction, examples What is Operations Research? What is Optimization What is Sequential Decision Making? What is Dynamic Programming?"— Presentation transcript:

1

2 Part 1 Overview, introduction, examples What is Operations Research? What is Optimization What is Sequential Decision Making? What is Dynamic Programming? Examples, please!

3 Perspective Universe Applied Maths OR Optimization Sequential Decision Making 620-113

4 What is Operations Research? A branch of applied mathematics dealing with the Science of Decision Making Also known as Management Science One of the streams at the Maths & Stats Department More information at www.ifors.org Local chapter www.asor.ms.unimelb.edu.au/melbourne

5 What is optimization? Extensive literature (books, journals, encyclopedia) Education and training programs Jobs Commercial software (eg. Excel) Consulting services Conferences and workshops Meeting place: e-optimization.com

6 Convention Universal Convention for the description of optimisation problems opt Objective (dvs) dvs Subject to: Constraints (dvs) Opt: either min or max. Objective: an expression (function) quantifying how good/bad our decisions are. dvs: decision variables Constraints: Restrictions on the decision variables.

7 Help Desk opt Objective (dvs) dvs Subject to: Constraints (dvs) Tip Usually it is best to build the model in the following order: –dvs (Decision variables) –Objective –Opt –Constraints But, ….. do not be dogmatic!

8 Naïve Example English Version Given:The value of the perimeter of a rectangle Task: Determine the width and height of the rectangle that will make its area as large as possible Maths Version Which one do you like better?

9 Help Desk Formally Opt = max dvs: w,h Objective: w x h Constraint: 2(w + h) = p

10 Help Desk h w Perimeter = 2(w+h) Area = w x h

11 Beware of the distinction between Problem Formulation Describing what the problem is all about Problem Solving Constructing a solution to a given problem Most students under estimate the difficulties encountered at the formulation stage

12 Naïve Example English Version Given:The value of the perimeter of a rectangle Task: Determine the width and height of the rectangle that will make its area as large as possible Maths Version This is the (maths) model

13 Observations There are infinitely many feasible solutions: Example 2(w + h) = p = 6 w = 3 - h/2 We can let h take value in the range (0,3).

14 Observations Not difficult to show that the optimal solution is I am a square Prove this!

15 Strong Operations Research Flavour Warning Parental Guidance is required

16 Role of Models in Problem Solving Realisation Informal Description Formal Model SolutionWorking System Modelling Analysis Implementation Monitoring mathematical ^ Don’t panic!

17 In Real-life Realisation Informal Description Formal Model SolutionWorking System Modelling Analysis Implementation Monitoring

18 We shall focus on Realisation Informal Description Formal Model Solution Working System Modelling Analysis Implementation Monitoring Given

19 Beware of the distinction between Problem Formulation Describing what the problem is all about Problem Solving Constructing a solution to a given problem Most students under estimate the difficulties encountered at the formulation stage

20 Example (Knapsack Problem) English Version Given: A container and a collection of items having known values and volumes. Task: Determine what is the sub-collection of items of maximum total value that will fit into the container. Maths Version ?????

21 5 minutes English Version Given: A container and a collection of items having known values and volumes. Task: Determine what is the sub-collection of items of maximum value that will fit into the container. Maths Version Help!

22 What is a Sequential Decision Problem ? A problem (typically an optimization problem) representing a sequential decision making situation. Example: Knapsack problem. Note the distinction between the problem itself and the formulation given to it.

23 What is a Dynamic Programming? Short version A paradigm for the formulation, analysis and solution for sequential decision problems. Answer Long version Wait and see …

24 Difficult to teach Difficult to learn Usually done “by example” Important Facts about DP

25 DP Approach to Problem Solving Step 1: Transform your problem into a family of related problems Step 2: Derive a functional equation relating the solutions to these problems to each other Step 3: Solve the functional equation Step 4: Recover from the functional equation a solution to your initial problem

26 Trouble is, This is easier said than done The Art of DP hence

27 Most Famous Example (Shortest Path Problem) Given: a set of nodes (cities) and the lengths of the arcs connecting them Task: Find the shortest path from some given node to another given node. 12345 678910 1112131415 1212 1 2 10 15 20 10 1212 1 15 20 10 1 2 1

28 Step 1: Create a Family of Related Problems Suppose we are given say m cities and have to determine the shortest path from city s to city d. Let f(j) := shortest distance from city s to city j, j=1,2,3,…,m. Note: we now have m problems.

29 Step 2: Deriving a Functional Equation From the definition of f(j) it follows that f(j) = t(k,j) + f(k) for some immediate predecessor k of j. Hence, where t denotes the distance matrix and P(j) denotes the set of immediate predecessors of node j.

30 Example f(8) = 12345 678910 1112131415 1212 1 2 10 15 20 10 1212 1 15 20 10 1 2 1

31 Step 3: Solve the FE Can be –Very easy –Easy –Difficult –Very difficult –Impossible

32 Example (naïve) 1 1 3 D E AB C 1 2 f(A) = 0 (by definition?) f(B) = t(A,B) + f(A) = 3 + 0 = 3 f(C) = t(B,C) + f(B) = 1 + 3 = 4 f(D) = t(B,D) + f(B) = 1 + 3 = 4 f(E) = min {t(C,E) + f(C),t(D,E) + f(D)} = min {1+4,2+4} = 5

33 Step 4: Recover a solution Once the functional equation is solved, it is usually simple to recover an optimal solution to the original problem. (Hint: go in …. reverse)

34 Example (naïve) 1 1 3 D E AB C 1 2 Optimal solutions to the FE (going from A to E) 1 1 3 D E AB C 1 2 Optimal solution to the original problem (going from E to A)

35 So what is all the fuss about DP? The examples we have seen so far are extremely simple (in fact naïve) There are major complications

36 A (very) Famous Example

37 Task: Move pieces from left to right Rules One piece at a time Large on small is not allowed Objective ??

38 Analysis Given n pieces Move n-1 pieces to the intermediate position Move the bottom one to the destination Move the n-1 pieces from the intermediate position to the destination

39

40 Formalism Let S(n,x,y) := Solution to a problem involving moving n pieces from position x to position y. Thus, S(1,x,y) := Move a piece from x to y. Theorem: S(n,x,y) = S(n-1,x,~(x,y)), S(1,x,y), S(n-1,~(x,y),y) Length [S(n,x,y)] = 2 n - 1

41 Start

42 0

43 1

44 2

45 3

46 4

47 5

48 6

49 7

50 8

51 9

52 10

53 11

54 12

55 13

56 14

57 15

58 2 n - 1 = 2 4  1 = 16  1 = 15 15

59 2 n - 1 = 2 4  1 = 16  1 = 15 15

60 2 n - 1 = 2 4  1 = 16  1 = 15

61 2 n The Curse of Dimensionality Bellman [1957]

62 What’s next? A short visit to the tutOR site. Hands-on with the Knapsack Problem: –Conventional Formulation –DP functional equation


Download ppt "Part 1 Overview, introduction, examples What is Operations Research? What is Optimization What is Sequential Decision Making? What is Dynamic Programming?"

Similar presentations


Ads by Google