SlideShare a Scribd company logo
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-21
A study on solving Assignment Problem
Prof. Ramashankar Prajapati, Dr. Ajazul Haque,
Dr. Jayesh Jain, Prof. Shiksha Singh
(Humanities & Applied Sciences, Viva Institute of Technology, India)
Abstract: The topic of assignment is a critical problem in mathematics and is further explored in the real
physical world. We try to implement a replacement method during this paper to solve assignment problems with
algorithm and solution steps. By using new method and computing by existing two methods, we analyse a
numerical example, also we compare the optimal solutions between this new method and two current methods. A
standardized technique, simple to use to solve assignment problems, may be the proposed method.
Keywords: Assignment issue, HA-method, assignment method of Matrix one, Proposed method, Optimization.
I. Introduction
We often encounter situations during which we have we’ve got to assign n jobs to n workers. All n workers are
capable of doing all jobs, but with a varying cost. Hence our task is to search out the simplest possible assignment
that offers maximum efficiency and minimum cost. Example, assigning activities to students, subjects to teachers,
different routes of pizza delivery boys, salesmen to different regions, jobs to machines, products to factories,
research problems to groups, vehicles and drivers to different routes etc. An issue of this nature is named an
assignment problem.
II. Definition
Assignment problem may be a special kind of problem which deals with allocation of assorted resources to varied
activities on one to 1 basis. It’s tired such some way that the whole cost or time involved within the process is
minimum or the whole profit is maximum.
III. Conditions
i) Number of jobs is capable number of machines or workers.
ii) Each worker or machine is assigned to just one job.
iii) Each worker or machine is independently capable of handling any job.
iv) Objective of the assignment is clearly specified (minimizing cost or maximizing profit)
3.1 Assignment Model:
Given n workers and n jobs with the price of each worker for each job, the matter is to assign each worker to at
least one and only 1 job so on to optimize the full cost.
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-22
𝑖=1
𝑖𝑗
𝑖𝑗
Let 𝐶𝑖𝑗 be the cost of assigning 𝑖𝑡ℎ to 𝑗𝑡ℎ job, 𝑥𝑖𝑗 be the assignment of 𝑖𝑡ℎ worker to 𝑗𝑡ℎ job and 𝑥𝑖𝑗 = 1, if 𝑖𝑡ℎ
worker is assigned to 𝑗𝑡ℎ job = 0, otherwise
Following table represents the value of assigning n workers to n jobs.
Worker Jobs
1 2 3 … … n
1 𝐶11 𝐶12 𝐶13 𝐶1𝑛
2 𝐶21 𝐶22 𝐶23 𝐶2𝑛
. . . . . . .
. . . . . . .
. . . . . . .
N 𝐶𝑛1 𝐶𝑛2 𝐶𝑛3 … … 𝐶𝑛𝑛
The objective is to form assignments that minimize the entire cost.
Thus, an assignment problem will be represented by n x n matrix which covers all the n! possible ways of
constructing assignments.
Assignment Problem may be a special case of Applied Math Problem.
Assignment problem will be expressed symbolically as follows:
Minimize Z = ∑𝑛 𝑛
𝑖=1 𝐶𝑖𝑗 𝑥𝑖𝑗
Subject to constraints
𝑛
∑ 𝑥 = 1; 𝑖 = 1, 2, 3, …𝑛
𝑗=1
(exactly one job is assigned to 𝑖𝑡ℎ worker)
𝑛
∑ 𝑥 = 1; 𝑖 = 1, 2, 3, … 𝑛
𝑖=1
(exactly one worker is assigned to 𝑗𝑡ℎ job where 𝑥𝑖𝑗 takes a worth 0 or 1.
3.2 Hungarian method is predicated on the subsequent properties:
1) If a relentless (positive or negative) is added to each element of any row or column within the given cost matrix,
an assignment that minimizes the overall cost within the original matrix also minimizes the overall cost within the
revised matrix.
2) In an assignment problem, an answer having zero total cost of assignment is an optimal solution.
The Hungarian algorithm is explained with the assistance of the subsequent example.
Consider an example where 4 jobs have to be performed by 4 workers, one job per worker. The matrix below
shows the value of assigning a specific worker to a particular job. The target is to attenuate the whole cost of
assignment.
Workers Jobs
𝐽1 𝐽2 𝐽3 𝐽4
𝑊
1
62 63 50 72
𝑊
2
57 35 49 60
𝑊
3
21 49 15 56
𝑊
4
18 19 78 23
3.2 Let us solve this problem by Hungarian method.
Step 1: Subtract the littlest element of every row from every element of that row.
∑
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-23
Workers Jobs
𝐽1 𝐽2 𝐽3 𝐽4
𝑊
1
12 13 0 22
𝑊
2
22 0 14 25
𝑊
3
6 34 0 41
𝑊
4
0 1 60 5
Step 2: Subtract the littlest element of every column from every element of that column.
Workers Jobs
𝐽1 𝐽2 𝐽3 𝐽4
𝑊
1
12 13 0 17
𝑊
2
22 0 14 20
𝑊
3
6 34 0 36
𝑊
4
0 1 60 0
Step 3: Assign through zeros.
Workers Jobs
√
√
√
𝑊1 12 13 ⓪ 17
𝑊2 22 ⓪ 14 20
𝑊3 6 34 0 36
𝑊4 ⓪ 1 60 0
Observe that third row doesn’t contain an assignment.
Step 4: 1. Mark (√) the row (𝑅3).
2. Mark (√) the columns (𝐶3) having zeros within the marked rows.
3. Mark (√) the row (𝑅3) which contains assignment in marked column.
4. Draw lines through the marked columns and unmarked rows.
Workers Jobs
√
𝑊1 12 13 ⓪ 17
√
√
𝑊2 22 ⓪ 14 20
𝑊3 6 34 0 36
𝑊4 ⓪ 1 60 0
All zeros will be covered using 3 lines
So, number of lines = 3 and order of matrix = 4
Hence, the quantity of lines required ≠ order of matrix.
Therefore, we continue with the subsequent step to form additional zeros.
Step 4: (i) Find the littlest uncovered element (6)
(ii) Subtract this number
3.3 Steps of the Hungarian Method:
Following steps describe the Hungarian Method.
Step 1. Subtract the minimum cost in each row of the price matrix from all the weather within the respective row.
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-24
Step 2. Subtract the minimum cost in each column of the value matrix from all the weather in the respective
column
Step 3. Starting with the primary row, check the rows step by step until a row containing exactly single zero is
found. Make an assignment by marking () that zero. Then cross (×) all other zeros within the column within
which the assignment was made. This eliminates the livelihood of constructing further assignments in this column.
Step 4. After examining all the rows, repeat the same procedure for columns. i.e. examine the columns one by one
until a column containing exactly one zero is found. Make an assignment by marking () that zero. Then cross
(×) all other zeros within the row within which the assignment was made.
Step 5. Continue these successive operations on rows and columns until all the zeros are either assigned or crossed
out and there’s exactly one assignment for each row and each column. In such case optimal solution is obtained.
Step 6. There could be some rows (or columns) without assignments i.e. the entire number of marked zeros is a
smaller amount than the order of the price matrix. In such case, proceed to step 7.
Step 7. Draw the smallest amount possible number of horizontal and vertical lines to hide all zeros.
This can be done as follows:
i) Mark ( ) the rows within which no assignment has been made.
ii) Mark ( ) the column having zeros within the marked rows.
iii) Mark ( ) rows which contain assignments in marked columns.
iv) Repeat 2 and three until the chain of marking is completed.
v) Draw straight lines through marked columns.
vi) Draw straight lines through unmarked rows.
By this fashion we draw the minimum number of horizontal and vertical lines required to cover all zeros. If the
amount of lines is less than the order of matrix, then there’s no solution. And if the minimum number of lines is
adequate to the order of matrix, then there is an answer and it’s optimal.
Step 8. If minimum number of lines < order of matrix, then
a) Select the littlest element not covered by any of the lines of the table.
3.4 Solve the following assignment using Hungarian Assignment Method:
Operator Machine
I II III IV V
1 18 24 19 20 23
2 19 21 20 18 22
3 22 23 20 21 23
4 20 18 21 19 19
5 18 22 23 22 21
Step 1: Subtract the smallest element of each row from each element of that row.
I II III IV V
1 0 6 1 2 4
2 1 3 2 0 3
3 2 3 0 1 3
4 2 0 3 1 1
5 0 4 5 4 3
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-25
Step 2: Subtract the smallest element of column from each element of that column.
I II III IV V
1 0 6 1 2 4
2 1 3 2 0 3
3 2 3 0 1 2
4 2 0 3 1 0
5 0 4 5 4 2
Step 3: Draw minimum number of lines (horizontal and vertical) that are required to cover all zeros in the matrix.
⓪
Here, minimum number of lines (4) < order of matrix (5). Therefore, we continue with the next step to create
additional zeros.
Step 4: (i) Find the smallest uncovered element (1)
(ii) Subtract this number from all uncovered elements and add it to all elements which lie at the intersection of
two lines.
I II III IV V
1 0 5 0 1 3 √
√
√
2 2 3 2 ⓪ 3
3 3 2 ⓪ 1 2
4 3 ⓪ 3 1 0
5 ⓪ 3 4 3 1
Here, minimum number of lines (4) < order of matrix (5). Therefore, we continue with the next step to create
additional zeros.
Step 5: (i) Find the smallest uncovered element (1)
(ii) Subtract this number from all uncovered elements and add it to all elements which lie at the intersection of
two lines.
(iii) Then assign through zeros.
I II III IV V
1 ⓪ 4 0 0 2
2 4 3 3 ⓪ 3
3 3 1 ⓪ 0 1
4 4 ⓪ 4 0 0
5 0 2 4 2 ⓪
Optimal Solution: 1→I, 2→IV, 3→III, 4→II, 5→V
Minimum Value = 18 + 18 + 20 +18 + 21 = 95
IV. Conclusion
I II III IV V
√
√
1 ⓪ 6 1 2 4
2 1 3 2 ⓪ 3
3 2 3 1 2
4 2 ⓪ 3 1 0
5 0 4 5 4 2
VIVA-Tech International Journal for Research and Innovation
ISSN(Online): 2581-7280
Volume 1, Issue 4 (2021)
VIVA Institute of Technology
9th
National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021)
E-26
In this paper, we explained the proposed algorithm and, by numerical illustration, demonstrated its effectiveness.
And we get the optimal solution, which is the same as the HA-method and MOA-method optimal solutions. This
paper therefore presents a new approach that is easy to address the issue of assignment.
V. References
[1]. Operation Research – An Introduction by H A Taha
[2]. Hamdy A. Tsaha, 2007, Operations Research, an introduction, 8th
Ed..
[3]. Operation Research by Gupta Prem Kumar and Hira D S
[4]. Operation Research by Panneerselvam and R

More Related Content

What's hot

Business statistics solved numericals
Business statistics solved numericalsBusiness statistics solved numericals
Business statistics solved numericals
Anurag Srivastava
 
Least cost
Least costLeast cost
Least cost
Rahul Chauhan
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
Anggy Herny Anggraeni
 
Role of small bussiness in indian economy.ppt 2007 sandhya
Role of small bussiness in indian economy.ppt 2007 sandhyaRole of small bussiness in indian economy.ppt 2007 sandhya
Role of small bussiness in indian economy.ppt 2007 sandhya
Prachi Bajaj
 
Presentation on oriflame sweden
Presentation on oriflame swedenPresentation on oriflame sweden
Presentation on oriflame sweden
Faglul Karim Raihan
 
Mb 106 quantitative techniques 1
Mb 106 quantitative techniques 1Mb 106 quantitative techniques 1
Mb 106 quantitative techniques 1
KrishnaRoy45
 
Mathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and exampleMathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and example
Sundar B N
 
MODI Method (Operations Research)
MODI Method (Operations Research) MODI Method (Operations Research)
MODI Method (Operations Research)
Nilraj Vasandia
 
North West Corner Rule
North   West Corner RuleNorth   West Corner Rule
North West Corner Rule
itsvineeth209
 
Lpp formulation
Lpp formulationLpp formulation
Lpp formulation
Anurag Srivastava
 
Asian paints Ltd ........PPT
Asian paints Ltd ........PPTAsian paints Ltd ........PPT
Asian paints Ltd ........PPT
AyushJadon5
 
Section 13.6 solving quadratic equations using the zero-factor property
Section 13.6 solving quadratic equations using the zero-factor propertySection 13.6 solving quadratic equations using the zero-factor property
Section 13.6 solving quadratic equations using the zero-factor property
GlenSchlee
 
Transportation problem ppt
Transportation problem pptTransportation problem ppt
Transportation problem ppt
Dr T.Sivakami
 
Linear programming problem
Linear programming problemLinear programming problem
Linear programming problem
makeitsimple007
 
Adding and subtracting polynomials
Adding and subtracting polynomialsAdding and subtracting polynomials
Adding and subtracting polynomials
ewhitener
 
Applications of linear programming
Applications of linear programmingApplications of linear programming
Applications of linear programming
Zenblade 93
 
Least Cost Method - operation research
Least Cost Method - operation researchLeast Cost Method - operation research
Least Cost Method - operation research
sajan gohel
 
Social entrepreneurship in indian scenario
Social entrepreneurship in indian scenarioSocial entrepreneurship in indian scenario
Social entrepreneurship in indian scenario
iaemedu
 
732812631002
732812631002732812631002
732812631002
MYNAMEISBOOPATHI
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
Humma Rashid
 

What's hot (20)

Business statistics solved numericals
Business statistics solved numericalsBusiness statistics solved numericals
Business statistics solved numericals
 
Least cost
Least costLeast cost
Least cost
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
 
Role of small bussiness in indian economy.ppt 2007 sandhya
Role of small bussiness in indian economy.ppt 2007 sandhyaRole of small bussiness in indian economy.ppt 2007 sandhya
Role of small bussiness in indian economy.ppt 2007 sandhya
 
Presentation on oriflame sweden
Presentation on oriflame swedenPresentation on oriflame sweden
Presentation on oriflame sweden
 
Mb 106 quantitative techniques 1
Mb 106 quantitative techniques 1Mb 106 quantitative techniques 1
Mb 106 quantitative techniques 1
 
Mathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and exampleMathematical formulation of lpp- properties and example
Mathematical formulation of lpp- properties and example
 
MODI Method (Operations Research)
MODI Method (Operations Research) MODI Method (Operations Research)
MODI Method (Operations Research)
 
North West Corner Rule
North   West Corner RuleNorth   West Corner Rule
North West Corner Rule
 
Lpp formulation
Lpp formulationLpp formulation
Lpp formulation
 
Asian paints Ltd ........PPT
Asian paints Ltd ........PPTAsian paints Ltd ........PPT
Asian paints Ltd ........PPT
 
Section 13.6 solving quadratic equations using the zero-factor property
Section 13.6 solving quadratic equations using the zero-factor propertySection 13.6 solving quadratic equations using the zero-factor property
Section 13.6 solving quadratic equations using the zero-factor property
 
Transportation problem ppt
Transportation problem pptTransportation problem ppt
Transportation problem ppt
 
Linear programming problem
Linear programming problemLinear programming problem
Linear programming problem
 
Adding and subtracting polynomials
Adding and subtracting polynomialsAdding and subtracting polynomials
Adding and subtracting polynomials
 
Applications of linear programming
Applications of linear programmingApplications of linear programming
Applications of linear programming
 
Least Cost Method - operation research
Least Cost Method - operation researchLeast Cost Method - operation research
Least Cost Method - operation research
 
Social entrepreneurship in indian scenario
Social entrepreneurship in indian scenarioSocial entrepreneurship in indian scenario
Social entrepreneurship in indian scenario
 
732812631002
732812631002732812631002
732812631002
 
Linear Programming
Linear ProgrammingLinear Programming
Linear Programming
 

Similar to A study on solving Assignment Problem

Solving ONE’S interval linear assignment problem
Solving ONE’S interval linear assignment problemSolving ONE’S interval linear assignment problem
Solving ONE’S interval linear assignment problem
IJERA Editor
 
A0280115(1)
A0280115(1)A0280115(1)
A0280115(1)
prabhat k prasad
 
A Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment ProblemA Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment Problem
Jim Webb
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
Abu Bashar
 
AMA_Assignment Theory notes
AMA_Assignment Theory notesAMA_Assignment Theory notes
AMA_Assignment Theory notes
CA Niraj Thapa
 
Asssignment problem
Asssignment problemAsssignment problem
Asssignment problem
Mamatha Upadhya
 
Assignment Poblems
Assignment Poblems Assignment Poblems
Assignment Poblems
vkabre
 
Assignment problem notes
Assignment problem notesAssignment problem notes
Assignment problem notes
VIKASHAGRAWALAgrawal
 
Ashish garg research paper 660_CamReady
Ashish garg research paper 660_CamReadyAshish garg research paper 660_CamReady
Ashish garg research paper 660_CamReady
Ashish Garg
 
Hungarian Method
Hungarian MethodHungarian Method
Hungarian Method
Aritra7469
 
Assignment Chapter - Q & A Compilation by Niraj Thapa
Assignment Chapter  - Q & A Compilation by Niraj ThapaAssignment Chapter  - Q & A Compilation by Niraj Thapa
Assignment Chapter - Q & A Compilation by Niraj Thapa
CA Niraj Thapa
 
Chapter 1 Assignment Problems (DS) (1).pptx
Chapter 1 Assignment Problems (DS) (1).pptxChapter 1 Assignment Problems (DS) (1).pptx
Chapter 1 Assignment Problems (DS) (1).pptx
PriyankaLunavat
 
Ac4103169172
Ac4103169172Ac4103169172
Ac4103169172
IJERA Editor
 
Basic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptxBasic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptx
PremanandS3
 
Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
Nakul Bhardwaj
 
qadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdfqadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdf
Hari31856
 
Operations research : Assignment problem (One's method) presentation
Operations research : Assignment problem (One's method) presentationOperations research : Assignment problem (One's method) presentation
Operations research : Assignment problem (One's method) presentation
Pankaj Kumar
 
Unit 2
Unit 2Unit 2
Unit 2
guna287176
 
Management Science
Management Science Management Science
Management Science
Renzhie Katigbak
 
Introduction.ppt
Introduction.pptIntroduction.ppt
Introduction.ppt
backlinkspuro
 

Similar to A study on solving Assignment Problem (20)

Solving ONE’S interval linear assignment problem
Solving ONE’S interval linear assignment problemSolving ONE’S interval linear assignment problem
Solving ONE’S interval linear assignment problem
 
A0280115(1)
A0280115(1)A0280115(1)
A0280115(1)
 
A Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment ProblemA Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment Problem
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
 
AMA_Assignment Theory notes
AMA_Assignment Theory notesAMA_Assignment Theory notes
AMA_Assignment Theory notes
 
Asssignment problem
Asssignment problemAsssignment problem
Asssignment problem
 
Assignment Poblems
Assignment Poblems Assignment Poblems
Assignment Poblems
 
Assignment problem notes
Assignment problem notesAssignment problem notes
Assignment problem notes
 
Ashish garg research paper 660_CamReady
Ashish garg research paper 660_CamReadyAshish garg research paper 660_CamReady
Ashish garg research paper 660_CamReady
 
Hungarian Method
Hungarian MethodHungarian Method
Hungarian Method
 
Assignment Chapter - Q & A Compilation by Niraj Thapa
Assignment Chapter  - Q & A Compilation by Niraj ThapaAssignment Chapter  - Q & A Compilation by Niraj Thapa
Assignment Chapter - Q & A Compilation by Niraj Thapa
 
Chapter 1 Assignment Problems (DS) (1).pptx
Chapter 1 Assignment Problems (DS) (1).pptxChapter 1 Assignment Problems (DS) (1).pptx
Chapter 1 Assignment Problems (DS) (1).pptx
 
Ac4103169172
Ac4103169172Ac4103169172
Ac4103169172
 
Basic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptxBasic MATLAB-Presentation.pptx
Basic MATLAB-Presentation.pptx
 
Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
 
qadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdfqadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdf
 
Operations research : Assignment problem (One's method) presentation
Operations research : Assignment problem (One's method) presentationOperations research : Assignment problem (One's method) presentation
Operations research : Assignment problem (One's method) presentation
 
Unit 2
Unit 2Unit 2
Unit 2
 
Management Science
Management Science Management Science
Management Science
 
Introduction.ppt
Introduction.pptIntroduction.ppt
Introduction.ppt
 

More from vivatechijri

Understanding the Impact and Challenges of Corona Crisis on Education Sector...
Understanding the Impact and Challenges of Corona Crisis on  Education Sector...Understanding the Impact and Challenges of Corona Crisis on  Education Sector...
Understanding the Impact and Challenges of Corona Crisis on Education Sector...
vivatechijri
 
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION TOWARDS IMPROVEMENT AND DEVELOPMENT
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION  TOWARDS IMPROVEMENT AND DEVELOPMENT  LEADERSHIP ONLY CAN LEAD THE ORGANIZATION  TOWARDS IMPROVEMENT AND DEVELOPMENT
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION TOWARDS IMPROVEMENT AND DEVELOPMENT
vivatechijri
 
Structural and Morphological Studies of Nano Composite Polymer Gel Electroly...
Structural and Morphological Studies of Nano Composite  Polymer Gel Electroly...Structural and Morphological Studies of Nano Composite  Polymer Gel Electroly...
Structural and Morphological Studies of Nano Composite Polymer Gel Electroly...
vivatechijri
 
Theoretical study of two dimensional Nano sheet for gas sensing application
Theoretical study of two dimensional Nano sheet for gas sensing  applicationTheoretical study of two dimensional Nano sheet for gas sensing  application
Theoretical study of two dimensional Nano sheet for gas sensing application
vivatechijri
 
METHODS FOR DETECTION OF COMMON ADULTERANTS IN FOOD
METHODS FOR DETECTION OF COMMON  ADULTERANTS IN FOODMETHODS FOR DETECTION OF COMMON  ADULTERANTS IN FOOD
METHODS FOR DETECTION OF COMMON ADULTERANTS IN FOOD
vivatechijri
 
The Business Development Ethics
The Business Development EthicsThe Business Development Ethics
The Business Development Ethics
vivatechijri
 
Digital Wellbeing
Digital WellbeingDigital Wellbeing
Digital Wellbeing
vivatechijri
 
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGEAn Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
vivatechijri
 
Enhancing The Capability of Chatbots
Enhancing The Capability of ChatbotsEnhancing The Capability of Chatbots
Enhancing The Capability of Chatbots
vivatechijri
 
Smart Glasses Technology
Smart Glasses TechnologySmart Glasses Technology
Smart Glasses Technology
vivatechijri
 
Future Applications of Smart Iot Devices
Future Applications of Smart Iot DevicesFuture Applications of Smart Iot Devices
Future Applications of Smart Iot Devices
vivatechijri
 
Cross Platform Development Using Flutter
Cross Platform Development Using FlutterCross Platform Development Using Flutter
Cross Platform Development Using Flutter
vivatechijri
 
3D INTERNET
3D INTERNET3D INTERNET
3D INTERNET
vivatechijri
 
Recommender Systems
Recommender SystemsRecommender Systems
Recommender Systems
vivatechijri
 
Light Fidelity(LiFi)- Wireless Optical Networking Technology
Light Fidelity(LiFi)- Wireless Optical Networking TechnologyLight Fidelity(LiFi)- Wireless Optical Networking Technology
Light Fidelity(LiFi)- Wireless Optical Networking Technology
vivatechijri
 
Social media platform and Our right to privacy
Social media platform and Our right to privacySocial media platform and Our right to privacy
Social media platform and Our right to privacy
vivatechijri
 
THE USABILITY METRICS FOR USER EXPERIENCE
THE USABILITY METRICS FOR USER EXPERIENCETHE USABILITY METRICS FOR USER EXPERIENCE
THE USABILITY METRICS FOR USER EXPERIENCE
vivatechijri
 
Google File System
Google File SystemGoogle File System
Google File System
vivatechijri
 
A Study of Tokenization of Real Estate Using Blockchain Technology
A Study of Tokenization of Real Estate Using Blockchain TechnologyA Study of Tokenization of Real Estate Using Blockchain Technology
A Study of Tokenization of Real Estate Using Blockchain Technology
vivatechijri
 
A Study of Data Storage Security Issues in Cloud Computing
A Study of Data Storage Security Issues in Cloud ComputingA Study of Data Storage Security Issues in Cloud Computing
A Study of Data Storage Security Issues in Cloud Computing
vivatechijri
 

More from vivatechijri (20)

Understanding the Impact and Challenges of Corona Crisis on Education Sector...
Understanding the Impact and Challenges of Corona Crisis on  Education Sector...Understanding the Impact and Challenges of Corona Crisis on  Education Sector...
Understanding the Impact and Challenges of Corona Crisis on Education Sector...
 
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION TOWARDS IMPROVEMENT AND DEVELOPMENT
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION  TOWARDS IMPROVEMENT AND DEVELOPMENT  LEADERSHIP ONLY CAN LEAD THE ORGANIZATION  TOWARDS IMPROVEMENT AND DEVELOPMENT
LEADERSHIP ONLY CAN LEAD THE ORGANIZATION TOWARDS IMPROVEMENT AND DEVELOPMENT
 
Structural and Morphological Studies of Nano Composite Polymer Gel Electroly...
Structural and Morphological Studies of Nano Composite  Polymer Gel Electroly...Structural and Morphological Studies of Nano Composite  Polymer Gel Electroly...
Structural and Morphological Studies of Nano Composite Polymer Gel Electroly...
 
Theoretical study of two dimensional Nano sheet for gas sensing application
Theoretical study of two dimensional Nano sheet for gas sensing  applicationTheoretical study of two dimensional Nano sheet for gas sensing  application
Theoretical study of two dimensional Nano sheet for gas sensing application
 
METHODS FOR DETECTION OF COMMON ADULTERANTS IN FOOD
METHODS FOR DETECTION OF COMMON  ADULTERANTS IN FOODMETHODS FOR DETECTION OF COMMON  ADULTERANTS IN FOOD
METHODS FOR DETECTION OF COMMON ADULTERANTS IN FOOD
 
The Business Development Ethics
The Business Development EthicsThe Business Development Ethics
The Business Development Ethics
 
Digital Wellbeing
Digital WellbeingDigital Wellbeing
Digital Wellbeing
 
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGEAn Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
An Alternative to Hard Drives in the Coming Future:DNA-BASED DATA STORAGE
 
Enhancing The Capability of Chatbots
Enhancing The Capability of ChatbotsEnhancing The Capability of Chatbots
Enhancing The Capability of Chatbots
 
Smart Glasses Technology
Smart Glasses TechnologySmart Glasses Technology
Smart Glasses Technology
 
Future Applications of Smart Iot Devices
Future Applications of Smart Iot DevicesFuture Applications of Smart Iot Devices
Future Applications of Smart Iot Devices
 
Cross Platform Development Using Flutter
Cross Platform Development Using FlutterCross Platform Development Using Flutter
Cross Platform Development Using Flutter
 
3D INTERNET
3D INTERNET3D INTERNET
3D INTERNET
 
Recommender Systems
Recommender SystemsRecommender Systems
Recommender Systems
 
Light Fidelity(LiFi)- Wireless Optical Networking Technology
Light Fidelity(LiFi)- Wireless Optical Networking TechnologyLight Fidelity(LiFi)- Wireless Optical Networking Technology
Light Fidelity(LiFi)- Wireless Optical Networking Technology
 
Social media platform and Our right to privacy
Social media platform and Our right to privacySocial media platform and Our right to privacy
Social media platform and Our right to privacy
 
THE USABILITY METRICS FOR USER EXPERIENCE
THE USABILITY METRICS FOR USER EXPERIENCETHE USABILITY METRICS FOR USER EXPERIENCE
THE USABILITY METRICS FOR USER EXPERIENCE
 
Google File System
Google File SystemGoogle File System
Google File System
 
A Study of Tokenization of Real Estate Using Blockchain Technology
A Study of Tokenization of Real Estate Using Blockchain TechnologyA Study of Tokenization of Real Estate Using Blockchain Technology
A Study of Tokenization of Real Estate Using Blockchain Technology
 
A Study of Data Storage Security Issues in Cloud Computing
A Study of Data Storage Security Issues in Cloud ComputingA Study of Data Storage Security Issues in Cloud Computing
A Study of Data Storage Security Issues in Cloud Computing
 

Recently uploaded

Software Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project ManagementSoftware Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project Management
Prakhyath Rai
 
Chlorine and Nitric Acid application, properties, impacts.pptx
Chlorine and Nitric Acid application, properties, impacts.pptxChlorine and Nitric Acid application, properties, impacts.pptx
Chlorine and Nitric Acid application, properties, impacts.pptx
yadavsuyash008
 
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model SafeRohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
binna singh$A17
 
Net Zero Case Study: SRK House and SRK Empire
Net Zero Case Study: SRK House and SRK EmpireNet Zero Case Study: SRK House and SRK Empire
Net Zero Case Study: SRK House and SRK Empire
Global Network for Zero
 
Response & Safe AI at Summer School of AI at IIITH
Response & Safe AI at Summer School of AI at IIITHResponse & Safe AI at Summer School of AI at IIITH
Response & Safe AI at Summer School of AI at IIITH
IIIT Hyderabad
 
Vernier Caliper and How to use Vernier Caliper.ppsx
Vernier Caliper and How to use Vernier Caliper.ppsxVernier Caliper and How to use Vernier Caliper.ppsx
Vernier Caliper and How to use Vernier Caliper.ppsx
Tool and Die Tech
 
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
sharvaridhokte
 
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K SchemeMSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
Anwar Patel
 
Lecture 3 Biomass energy...............ppt
Lecture 3 Biomass energy...............pptLecture 3 Biomass energy...............ppt
Lecture 3 Biomass energy...............ppt
RujanTimsina1
 
IS Code SP 23: Handbook on concrete mixes
IS Code SP 23: Handbook  on concrete mixesIS Code SP 23: Handbook  on concrete mixes
IS Code SP 23: Handbook on concrete mixes
Mani Krishna Sarkar
 
Conservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic RegenerationConservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic Regeneration
PriyankaKarn3
 
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
sanabts249
 
LeetCode Database problems solved using PySpark.pdf
LeetCode Database problems solved using PySpark.pdfLeetCode Database problems solved using PySpark.pdf
LeetCode Database problems solved using PySpark.pdf
pavanaroshni1977
 
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
Mani Krishna Sarkar
 
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
Miss Khusi #V08
 
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
IJAEMSJORNAL
 
Social media management system project report.pdf
Social media management system project report.pdfSocial media management system project report.pdf
Social media management system project report.pdf
Kamal Acharya
 
Introduction to IP address concept - Computer Networking
Introduction to IP address concept - Computer NetworkingIntroduction to IP address concept - Computer Networking
Introduction to IP address concept - Computer Networking
Md.Shohel Rana ( M.Sc in CSE Khulna University of Engineering & Technology (KUET))
 
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdfOCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
Muanisa Waras
 
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdfGUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
ProexportColombia1
 

Recently uploaded (20)

Software Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project ManagementSoftware Engineering and Project Management - Introduction to Project Management
Software Engineering and Project Management - Introduction to Project Management
 
Chlorine and Nitric Acid application, properties, impacts.pptx
Chlorine and Nitric Acid application, properties, impacts.pptxChlorine and Nitric Acid application, properties, impacts.pptx
Chlorine and Nitric Acid application, properties, impacts.pptx
 
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model SafeRohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
Rohini @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Yogita Mehra Top Model Safe
 
Net Zero Case Study: SRK House and SRK Empire
Net Zero Case Study: SRK House and SRK EmpireNet Zero Case Study: SRK House and SRK Empire
Net Zero Case Study: SRK House and SRK Empire
 
Response & Safe AI at Summer School of AI at IIITH
Response & Safe AI at Summer School of AI at IIITHResponse & Safe AI at Summer School of AI at IIITH
Response & Safe AI at Summer School of AI at IIITH
 
Vernier Caliper and How to use Vernier Caliper.ppsx
Vernier Caliper and How to use Vernier Caliper.ppsxVernier Caliper and How to use Vernier Caliper.ppsx
Vernier Caliper and How to use Vernier Caliper.ppsx
 
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
22519 - Client-Side Scripting Language (CSS) chapter 1 notes .pdf
 
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K SchemeMSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme MSBTE K Scheme
 
Lecture 3 Biomass energy...............ppt
Lecture 3 Biomass energy...............pptLecture 3 Biomass energy...............ppt
Lecture 3 Biomass energy...............ppt
 
IS Code SP 23: Handbook on concrete mixes
IS Code SP 23: Handbook  on concrete mixesIS Code SP 23: Handbook  on concrete mixes
IS Code SP 23: Handbook on concrete mixes
 
Conservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic RegenerationConservation of Taksar through Economic Regeneration
Conservation of Taksar through Economic Regeneration
 
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
21CV61- Module 3 (CONSTRUCTION MANAGEMENT AND ENTREPRENEURSHIP.pptx
 
LeetCode Database problems solved using PySpark.pdf
LeetCode Database problems solved using PySpark.pdfLeetCode Database problems solved using PySpark.pdf
LeetCode Database problems solved using PySpark.pdf
 
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
1239_2.pdf IS CODE FOR GI PIPE FOR PROCUREMENT
 
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
Phone Us ❤ X000XX000X ❤ #ℂall #gIRLS In Chennai By Chenai @ℂall @Girls Hotel ...
 
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
Profiling of Cafe Business in Talavera, Nueva Ecija: A Basis for Development ...
 
Social media management system project report.pdf
Social media management system project report.pdfSocial media management system project report.pdf
Social media management system project report.pdf
 
Introduction to IP address concept - Computer Networking
Introduction to IP address concept - Computer NetworkingIntroduction to IP address concept - Computer Networking
Introduction to IP address concept - Computer Networking
 
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdfOCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
OCS Training - Rig Equipment Inspection - Advanced 5 Days_IADC.pdf
 
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdfGUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
GUIA_LEGAL_CHAPTER_4_FOREIGN TRADE CUSTOMS.pdf
 

A study on solving Assignment Problem

  • 1. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-21 A study on solving Assignment Problem Prof. Ramashankar Prajapati, Dr. Ajazul Haque, Dr. Jayesh Jain, Prof. Shiksha Singh (Humanities & Applied Sciences, Viva Institute of Technology, India) Abstract: The topic of assignment is a critical problem in mathematics and is further explored in the real physical world. We try to implement a replacement method during this paper to solve assignment problems with algorithm and solution steps. By using new method and computing by existing two methods, we analyse a numerical example, also we compare the optimal solutions between this new method and two current methods. A standardized technique, simple to use to solve assignment problems, may be the proposed method. Keywords: Assignment issue, HA-method, assignment method of Matrix one, Proposed method, Optimization. I. Introduction We often encounter situations during which we have we’ve got to assign n jobs to n workers. All n workers are capable of doing all jobs, but with a varying cost. Hence our task is to search out the simplest possible assignment that offers maximum efficiency and minimum cost. Example, assigning activities to students, subjects to teachers, different routes of pizza delivery boys, salesmen to different regions, jobs to machines, products to factories, research problems to groups, vehicles and drivers to different routes etc. An issue of this nature is named an assignment problem. II. Definition Assignment problem may be a special kind of problem which deals with allocation of assorted resources to varied activities on one to 1 basis. It’s tired such some way that the whole cost or time involved within the process is minimum or the whole profit is maximum. III. Conditions i) Number of jobs is capable number of machines or workers. ii) Each worker or machine is assigned to just one job. iii) Each worker or machine is independently capable of handling any job. iv) Objective of the assignment is clearly specified (minimizing cost or maximizing profit) 3.1 Assignment Model: Given n workers and n jobs with the price of each worker for each job, the matter is to assign each worker to at least one and only 1 job so on to optimize the full cost.
  • 2. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-22 𝑖=1 𝑖𝑗 𝑖𝑗 Let 𝐶𝑖𝑗 be the cost of assigning 𝑖𝑡ℎ to 𝑗𝑡ℎ job, 𝑥𝑖𝑗 be the assignment of 𝑖𝑡ℎ worker to 𝑗𝑡ℎ job and 𝑥𝑖𝑗 = 1, if 𝑖𝑡ℎ worker is assigned to 𝑗𝑡ℎ job = 0, otherwise Following table represents the value of assigning n workers to n jobs. Worker Jobs 1 2 3 … … n 1 𝐶11 𝐶12 𝐶13 𝐶1𝑛 2 𝐶21 𝐶22 𝐶23 𝐶2𝑛 . . . . . . . . . . . . . . . . . . . . . N 𝐶𝑛1 𝐶𝑛2 𝐶𝑛3 … … 𝐶𝑛𝑛 The objective is to form assignments that minimize the entire cost. Thus, an assignment problem will be represented by n x n matrix which covers all the n! possible ways of constructing assignments. Assignment Problem may be a special case of Applied Math Problem. Assignment problem will be expressed symbolically as follows: Minimize Z = ∑𝑛 𝑛 𝑖=1 𝐶𝑖𝑗 𝑥𝑖𝑗 Subject to constraints 𝑛 ∑ 𝑥 = 1; 𝑖 = 1, 2, 3, …𝑛 𝑗=1 (exactly one job is assigned to 𝑖𝑡ℎ worker) 𝑛 ∑ 𝑥 = 1; 𝑖 = 1, 2, 3, … 𝑛 𝑖=1 (exactly one worker is assigned to 𝑗𝑡ℎ job where 𝑥𝑖𝑗 takes a worth 0 or 1. 3.2 Hungarian method is predicated on the subsequent properties: 1) If a relentless (positive or negative) is added to each element of any row or column within the given cost matrix, an assignment that minimizes the overall cost within the original matrix also minimizes the overall cost within the revised matrix. 2) In an assignment problem, an answer having zero total cost of assignment is an optimal solution. The Hungarian algorithm is explained with the assistance of the subsequent example. Consider an example where 4 jobs have to be performed by 4 workers, one job per worker. The matrix below shows the value of assigning a specific worker to a particular job. The target is to attenuate the whole cost of assignment. Workers Jobs 𝐽1 𝐽2 𝐽3 𝐽4 𝑊 1 62 63 50 72 𝑊 2 57 35 49 60 𝑊 3 21 49 15 56 𝑊 4 18 19 78 23 3.2 Let us solve this problem by Hungarian method. Step 1: Subtract the littlest element of every row from every element of that row. ∑
  • 3. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-23 Workers Jobs 𝐽1 𝐽2 𝐽3 𝐽4 𝑊 1 12 13 0 22 𝑊 2 22 0 14 25 𝑊 3 6 34 0 41 𝑊 4 0 1 60 5 Step 2: Subtract the littlest element of every column from every element of that column. Workers Jobs 𝐽1 𝐽2 𝐽3 𝐽4 𝑊 1 12 13 0 17 𝑊 2 22 0 14 20 𝑊 3 6 34 0 36 𝑊 4 0 1 60 0 Step 3: Assign through zeros. Workers Jobs √ √ √ 𝑊1 12 13 ⓪ 17 𝑊2 22 ⓪ 14 20 𝑊3 6 34 0 36 𝑊4 ⓪ 1 60 0 Observe that third row doesn’t contain an assignment. Step 4: 1. Mark (√) the row (𝑅3). 2. Mark (√) the columns (𝐶3) having zeros within the marked rows. 3. Mark (√) the row (𝑅3) which contains assignment in marked column. 4. Draw lines through the marked columns and unmarked rows. Workers Jobs √ 𝑊1 12 13 ⓪ 17 √ √ 𝑊2 22 ⓪ 14 20 𝑊3 6 34 0 36 𝑊4 ⓪ 1 60 0 All zeros will be covered using 3 lines So, number of lines = 3 and order of matrix = 4 Hence, the quantity of lines required ≠ order of matrix. Therefore, we continue with the subsequent step to form additional zeros. Step 4: (i) Find the littlest uncovered element (6) (ii) Subtract this number 3.3 Steps of the Hungarian Method: Following steps describe the Hungarian Method. Step 1. Subtract the minimum cost in each row of the price matrix from all the weather within the respective row.
  • 4. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-24 Step 2. Subtract the minimum cost in each column of the value matrix from all the weather in the respective column Step 3. Starting with the primary row, check the rows step by step until a row containing exactly single zero is found. Make an assignment by marking () that zero. Then cross (×) all other zeros within the column within which the assignment was made. This eliminates the livelihood of constructing further assignments in this column. Step 4. After examining all the rows, repeat the same procedure for columns. i.e. examine the columns one by one until a column containing exactly one zero is found. Make an assignment by marking () that zero. Then cross (×) all other zeros within the row within which the assignment was made. Step 5. Continue these successive operations on rows and columns until all the zeros are either assigned or crossed out and there’s exactly one assignment for each row and each column. In such case optimal solution is obtained. Step 6. There could be some rows (or columns) without assignments i.e. the entire number of marked zeros is a smaller amount than the order of the price matrix. In such case, proceed to step 7. Step 7. Draw the smallest amount possible number of horizontal and vertical lines to hide all zeros. This can be done as follows: i) Mark ( ) the rows within which no assignment has been made. ii) Mark ( ) the column having zeros within the marked rows. iii) Mark ( ) rows which contain assignments in marked columns. iv) Repeat 2 and three until the chain of marking is completed. v) Draw straight lines through marked columns. vi) Draw straight lines through unmarked rows. By this fashion we draw the minimum number of horizontal and vertical lines required to cover all zeros. If the amount of lines is less than the order of matrix, then there’s no solution. And if the minimum number of lines is adequate to the order of matrix, then there is an answer and it’s optimal. Step 8. If minimum number of lines < order of matrix, then a) Select the littlest element not covered by any of the lines of the table. 3.4 Solve the following assignment using Hungarian Assignment Method: Operator Machine I II III IV V 1 18 24 19 20 23 2 19 21 20 18 22 3 22 23 20 21 23 4 20 18 21 19 19 5 18 22 23 22 21 Step 1: Subtract the smallest element of each row from each element of that row. I II III IV V 1 0 6 1 2 4 2 1 3 2 0 3 3 2 3 0 1 3 4 2 0 3 1 1 5 0 4 5 4 3
  • 5. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-25 Step 2: Subtract the smallest element of column from each element of that column. I II III IV V 1 0 6 1 2 4 2 1 3 2 0 3 3 2 3 0 1 2 4 2 0 3 1 0 5 0 4 5 4 2 Step 3: Draw minimum number of lines (horizontal and vertical) that are required to cover all zeros in the matrix. ⓪ Here, minimum number of lines (4) < order of matrix (5). Therefore, we continue with the next step to create additional zeros. Step 4: (i) Find the smallest uncovered element (1) (ii) Subtract this number from all uncovered elements and add it to all elements which lie at the intersection of two lines. I II III IV V 1 0 5 0 1 3 √ √ √ 2 2 3 2 ⓪ 3 3 3 2 ⓪ 1 2 4 3 ⓪ 3 1 0 5 ⓪ 3 4 3 1 Here, minimum number of lines (4) < order of matrix (5). Therefore, we continue with the next step to create additional zeros. Step 5: (i) Find the smallest uncovered element (1) (ii) Subtract this number from all uncovered elements and add it to all elements which lie at the intersection of two lines. (iii) Then assign through zeros. I II III IV V 1 ⓪ 4 0 0 2 2 4 3 3 ⓪ 3 3 3 1 ⓪ 0 1 4 4 ⓪ 4 0 0 5 0 2 4 2 ⓪ Optimal Solution: 1→I, 2→IV, 3→III, 4→II, 5→V Minimum Value = 18 + 18 + 20 +18 + 21 = 95 IV. Conclusion I II III IV V √ √ 1 ⓪ 6 1 2 4 2 1 3 2 ⓪ 3 3 2 3 1 2 4 2 ⓪ 3 1 0 5 0 4 5 4 2
  • 6. VIVA-Tech International Journal for Research and Innovation ISSN(Online): 2581-7280 Volume 1, Issue 4 (2021) VIVA Institute of Technology 9th National Conference on Role of Engineers in Nation Building – 2021 (NCRENB-2021) E-26 In this paper, we explained the proposed algorithm and, by numerical illustration, demonstrated its effectiveness. And we get the optimal solution, which is the same as the HA-method and MOA-method optimal solutions. This paper therefore presents a new approach that is easy to address the issue of assignment. V. References [1]. Operation Research – An Introduction by H A Taha [2]. Hamdy A. Tsaha, 2007, Operations Research, an introduction, 8th Ed.. [3]. Operation Research by Gupta Prem Kumar and Hira D S [4]. Operation Research by Panneerselvam and R