1 / 37

Quantitative Methods

Quantitative Methods. Created by: Zsolt T. Kosztyán PhD kzst@vision.vein.hu http ://vision.vein.hu/~kzst/oktatas/km/index.htm. 1. The aim of this course. Scope: Introduce quantitative methods, theories and its applications of management science. Syllabus.

tymon
Download Presentation

Quantitative Methods

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Quantitative Methods Created by: Zsolt T. Kosztyán PhD kzst@vision.vein.hu http://vision.vein.hu/~kzst/oktatas/km/index.htm 1.

  2. The aim of this course • Scope: Introduce quantitative methods, theories and its applications of management science.

  3. Syllabus • 1st lecture: Introduction to Theories and its Applications of Graphs (Shortest Path Problems; Maximal Flow Problem; Minimal Spanning Trees; and these applications in Logistics) • 2nd lecture: LP problems and applications in productions and transfer problems • 3rd lecture: Flow Shop and Job Shop modells. EOQ. • 4th lecture: Scheduling problems. Theories and its Applications in Project Management and Small-scale Series Production Management • 5th lecture: Cost and Resource Allocation. • 6th-9th lecture: Advanced Statistical Methods (Regression Analysis, Principal Component Analysis, Factor Analysis, Analysis of Variance, Cluster Analysis, Contingence Analysis, Path Analysis • 10th lecture: Forecasting • 11th-12th lecture: Statistical Process Control. Expression of Measuring Uncertainties. • 13th lecture: Test. Simulation Techniques (Monte Carlo Simulations). • 14th lecture: Make-up test. Using different kind of Softwere Developement Tools for Solving Quantitative Problems.

  4. Characterics of Methods • Heuristic Methods • Feasible solution can be reach easily • Cannot guarantee the optimal solution • Algorithmic methods • Finding optimal solution can be guaranteed. • Slower methods than heuristic ones • Evolution methods • Mix of the heuristic and the algorithmic methods • The initial solution can be a feasible solution determined by heuristic method. This solution will be improved. • The optimal solution cannot be guaranteed in finite step (but usually garanteed in infinite step)

  5. Short View of History in Graph Theory • 1735 Euler solves the problem of bridges in Königsberg. • 1847 Kirchoff has applied theory of graphs for characterising electronic circuits. • 1852 F. Guthrie: Suggestion of four colour problem. • 1857 Cayley has applied graph theory in chemistry. • 2nd World War: Solving Logistic Problems with Using Graph Theories. • 1960s CPM, PERT.

  6. Graph Theory – Terms and Definitions I • Graph: G=(N,A) contains of a set N of nodes and a set A of arcs which elements are ordered/unordered pairs of distinct nodes. • Directed Graph: arcs are ordered pairs of distinct nodes. • Undirected Graph: arcs are unordered pairs of distinct nodes. (Ni, Nj)= (Nj, Ni) Directed Graph Undirected Graph • Weighted Graph: A weighted graph is a graph in which each branch is given a numerical weight.

  7. Terms and definitions II • Subgraph: A Gp=(Np,Ap) graph is a subgraph of G=(N,A) if NpN, ApA • I.e:G:=(N,A); N:={1;2;3;4;5}, A:={(1,2);(1,3);(2,3);(2,4);(3,5);(4,5)}, Gp:=(Np,Ap); Np:={1;2;3;5}, Ap:={(1,2);(2,3);(3,5)}

  8. Terms and Definitions III • Walk: A walk is a sequence of arcs and nodes such that the arcs and nodes are adjacent. • Directed Walk: A directed walk is an ”oriented” version of a walk in the sense that for any two consecutive nodes are on the walk. • (Directed) Path: A (directed) path is a (directed) walk without any repetition. • Closed (Directed) Walk: A closed (directed) walk is a subset of the arc set of G that forms a walk such that the first node of the walk corresponds to the last. • (Directed) Cycle: (directed) cycle is a closed (directed) walk without any repetition. Directed pathUndirected path

  9. Terms and definitions IV • Loop: arc which tail node is the same as its head node.  • Multiarcs: two or more arcs with the same tail and head nodes. • i.e.:G:=(N,A); N:={1;2}, A:={(1,2); (1,2); (2,2)} • Simple graph: no contains multiarcs or loops.

  10. Terms and definitions V • Isolated nodes: Nodes without arcs. Let G=(N,A) an undirected graph. • Number of nodes: • Number of arcs: • Indegree: • Outdegree: • Degree:

  11. Terms and defintions VI • Connectivity: We will say that two nodes i and j are connected if the graph G contains at least one path from node i to node j. A graph is a connected if every pair of its nodes is connected; otherwise the graph is disconnected. • Strong Connectivity: A connected graph is strongly connected if it contains at least one directed path from every node to every other node. • Tree: A tree is a connected graph that contains no cycle. • Forest: A graph that contains no cycle is a forest. Alternatively, a forest is a collection of trees

  12. Terms and definitions VII • Neighbours: A pair of nodes is a neighbour if they have an arc connecting them. • Complete graph: Complete graphs have the feature that each pair of nodes has an arc connecting them.

  13. Terms and definitions VIII • A subgraph H is a spanning subgraph, or factor, of a graph G if it has the same arc set as G. We say H spans G. • A spanning tree is a spanning subgraph that is a tree.

  14. Representing graphs Incidence matrix Adjacency list Adjacency matrix

  15. Finding Minimum Spanning Trees • Minimum Spanning Tree: A subgraph of a weighted graph is a minimal spanning tree, if a spanning tree with minimal cost.

  16. Kruskal’s algorithm O(n2), O(m+n·log(n))

  17. Prim’s algorithm O(n2), O(m+n·log(n))

  18. Shortest Path Problem – Dijkstra’s algorithm O(n2)

  19. Isomorphic graphs • A G1=(N1,A1) graph is an isomorphic graph of G2=(N2,A2) graph, if j:N1N2, andf:A1A2 bijective functions. • In the case when the bijection is a mapping of a graph onto itself, it is called an automorphism.

  20. Topological ordering • A G=(N,A) directed acyclic graph is topological ordered if Ni,NjN and (Ni,Nj)A then Nj followed by Ni in a list. • The graph shown to the left has many valid topological sorts, including: 7, 5, 3, 11, 8, 2, 9, 10 (visual left-to-right, top-to-bottom) • 3, 5, 7, 8, 11, 2, 9, 10 (smallest-numbered available arc first) • 3, 7, 8, 5, 11, 10, 2, 9 • 5, 7, 3, 8, 11, 10, 9, 2 (least number of node first) • 7, 5, 11, 3, 10, 8, 9, 2 (largest-numbered available arc first) • 7, 5, 11, 2, 3, 8, 9, 10

  21. Topological ordering – Phase I • We select source nodes into first stage. • Outgoing arcs of these nodes will be erased. • Select source nodes in the modified graph into next stage. • GO TO STEP 2 until there are any unselected nodes. • Connect nodes regarding the initial graph.

  22. Topological ordering – Phase I

  23. Topological ordering – Phase II (SPP) O(n+m)

  24. Maximal flows – terms & definitions • The G=(N,A) a weighted directed graph is a network, if !s,tN, node s is the source (no contains incoming arcs); node t is the sink (no contains outgoing arcs). • The capacity of an arc is a mapping c:AR+. It represents the maximum amount of flow that can pass through an arc. • A flow is a mappingf:N2R subject to the following two constraints: • f(n1,n2)=-f(n2,n1) (n1,n2)A, n1,n2N • f(n1,n2)c(n1,n2), n1,n2N • The initial flow is 0.

  25. Maximal flows – terms & definitions • The arc (ni,nj) is saturated if f(ni,nj)=c(ni,nj). The value of flow f defined by |f|, where • Let G=(N,A) a network. s-t cutC=(S,T) is a partition of N (ST=N, ST=) such that s∈S and t∈T. The cut-set of C is the set {(u,v)∈A | u∈S, v∈T}. Note that if the nodes in the cut-set of C are removed, | f | = 0.

  26. Maximal flows – terms & definitions • Let G=(N,A) a flow network. Node s a source node, and t a sink node. If capacities c:AR+ , and flows f:N2R of the arcs are given, than the residual capacity can be definied as follows: r:AR where if n1,n2Nr(ni,nj):=c(ni,nj)-f(ni,nj). The Residual Graph of flow f is graph Gf=(N,Af) with residual capacity function r, where Af ={(ni,nj)| ni,njN, r(n1,n2)>0}.

  27. Maximal flows – terms & definitions • An augmenting path is a path (u1,u2,…,uk) in the residual network, where u1=s, uk =t, and r(ui, ui+1)>0. A network is at maximum flow if and only if there is no augmenting path in the residual network. If there is available capacity along the augmenting path the minimal residual capacity of the augmenting path is defined as critical capacity.

  28. Max-flow min-cut theorem • In optimization theory, the max-flow min-cut theorem states that in a flow network, the maximum amount of flow passing from the source to the sink is equal to the minimum capacity which when removed in a specific way from the network causes the situation that no flow can pass from the source to the sink.

  29. Ford-Fulkerson’s algorithm • The idea behind the algorithm is very simple: As long as there is a path from the source (start node) to the sink (end node), with available capacity on all arcs in the path, we send flow along one of these paths. Then we find another path, and so on. A path with available capacity is called an augmenting path.

  30. Ford-Fulkerson’s algorithm

  31. Ford-Fulkerson’s algorithm

  32. Edmondson – Karp’s heuristic algorithm O(m2n) • The algorithm is identical to the Ford–Fulkerson algorithm, except that the search order when finding the augmenting path is defined. The path found must be the shortest path which has available capacity.

  33. Multi-source multi-sink maximum flow problem • Given a network G=(N,A) with a set of sources S={s1, ..., sn} and a set of sinks T={t1, ..., tm} instead of only one source and one sink, we are to find the maximum flow across G. We can transform the multi-source multi-sink problem into a maximum flow problem by adding a consolidated source connecting to each node in S and a consolidated sink connected by each node in T with infinite capacity on each edge.

  34. Multi-source multi-sink maximum flow problem

  35. Thank you for your kind attention!

  36. References • Ravindra K. Ahuja, Thomas L. Magnant, James B. Orlin: Network Flows. PRENTICE HALL, Upper Saddle River, New Jersey

  37. 1.

More Related