Define Operations Research: Applications of Management Science
Define Operations Research: Applications of Management Science
Applications of management science are abundant in industry as airlines, manufacturing companies, service
organizations, military branches, and in government. The range of problems and issues to which management
deciding the appropriate place to site new facilities such as a warehouse, factory or fire station,
identifying possible future development paths for parts of the telecommunications industry,
establishing the information needs and appropriate systems to supply them within the health service,
and
identifying and understanding the strategies adopted by companies for their information systems
Management science is also concerned with so-called ”soft-operational analysis”, which concerns methods for
strategic planning, strategic decision support, and Problem Structuring Methods (PSM). In dealing with these
sorts of challenges mathematical modeling and simulation are not appropriate or will not suffice. Therefore,
during the past 30 years, a number of non-quantified modelling methods have been developed. These include:
robustness analysis
Operational research encompasses a wide range of problem-solving techniques and methods applied in the
pursuit of improved decision-making and efficiency. Some of the tools used by operational researchers
are statistics, optimization, probability theory, queuing theory,game theory, graph theory, decision
analysis, mathematical modeling and simulation. Because of the computational nature of these fields, OR also
has strong ties to computer science. Operational researchers faced with a new problem must determine which of
these techniques are most appropriate given the nature of the system, the goals for improvement, and
Work in operational research and management science may be characterized as one of three categories:
Modeling work is concerned with the construction of models, analyzing them mathematically,
implementing them on computers, solving them using software tools, and assessing their effectiveness with
data. This level is mainly instrumental, and driven mainly by statisticsand econometrics.
Application work in operational research, like other engineering and economics' disciplines, attempts to
The major subdisciplines in modern operational research, as identified by the journal Operations Research,[4] are:
Decision analysis
Financial engineering
Revenue management
Simulation
Stochastic models
Transportation
The assignment problem is one of the fundamental combinatorial optimization problems in the branch
There are a number of agents and a number of tasks. Any agent can be assigned to perform any task,
incurring some cost that may vary depending on the agent-task assignment. It is required to perform all
tasks by assigning exactly one agent to each task in such a way that the total cost of the assignment is
minimized.
If the numbers of agents and tasks are equal and the total cost of the assignment for all tasks is equal to
the sum of the costs for each agent (or the sum of the costs for each task, which is the same thing in this
case), then the problem is called the Linear assignment problem. Commonly, when speaking of
the Assignment problem without any additional qualification, then the Linear assignment problem is meant.
Hungarian Algorithm
The Hungarian method is a combinatorial optimization algorithm which solves the assignment problem in
polynomial time and which anticipated later primal-dual methods. It was developed and published by Harold
Kuhn in 1955, who gave the name "Hungarian method" because the algorithm was largely based on the earlier
James Munkres reviewed the algorithm in 1957 and observed that it is (strongly) polynomial. Since then the
algorithm has been known also as Kuhn-Munkres algorithm or Munkres assignment algorithm. The time
complexity of the original algorithm was O(n4), howeverEdmonds and Karp, and independently Tomizawa noticed
that it can be modified to achieve an O(n3) running time. Ford and Fulkerson extended the method to general
transportation problems. In 2006, it was discovered that Carl Gustav Jacobi had solved the assignment problem
The Hungarian algorithm is one of many algorithms that have been devised that solve the linear assignment
The assignment problem is a special case of the transportation problem, which is a special case of the minimum
cost flow problem, which in turn is a special case of a linear program. While it is possible to solve any of these
problems using the simplex algorithm, each specialization has more efficient algorithms designed to take
advantage of its special structure. If the cost function involves quadratic inequalities it is called the quadratic
assignment problem.
Example
Suppose that a taxi firm has three taxis (the agents) available, and three customers (the tasks) wishing to be
picked up as soon as possible. The firm prides itself on speedy pickups, so for each taxi the "cost" of picking up a
particular customer will depend on the time taken for the taxi to reach the pickup point. The solution to the
assignment problem will be whichever combination of taxis and customers results in the least total cost.
However, the assignment problem can be made rather more flexible than it first appears. In the above example,
suppose that there are four taxis available, but still only three customers. Then a fourth dummy task can be
invented, perhaps called "sitting still doing nothing", with a cost of 0 for the taxi assigned to it. The assignment
problem can then be solved in the usual way and still give the best solution to the problem.
Similar tricks can be played in order to allow more tasks than agents, tasks to which multiple agents must be
assigned (for instance, a group of more customers than will fit in one taxi), or maximizing profit rather than
minimizing cost.
Formal mathematical definition
The formal definition of the assignment problem (or linear assignment problem) is
Given two sets, A and T, of equal size, together with a weight function C : A × T → R. Find
is minimized.
Usually the weight function is viewed as a square real-valued matrix C, so that the cost
The problem is "linear" because the cost functions to be optimized as well as all the
The problem can be expressed as a standard linear program with the objective function
for ,
for ,
for .