We want to find an optimal solution for maximising total revenue. We can do this using the Hungarian method, we first tabularize the given data:PQRSTA5590758076B7578667264C6566576056D125132114120112E7578697268
The given problem is a balanced maximisation problem, so at first we need to convert the matrix into cost/loss matrix. By subtracting all the values in thematrix from the largest value in the matrix(132). we have:
PQRSTA7742575256B5754666068C6766757276D70181220E5754636064
By subtracting the smallest vlaue in the row from all elements in the row and subtracting the smallest value in the column from all elements in the column,we obtain the matrix below, we then cover the zeros using the using the lines below:
PQRSTA346340B26000C410140D00000E610140
The solution is not optimal. The minimum uncovered element is 1 that is subtracted from all elements and added to all elements at intersections.This yields the following matrix
PQRSTA335230B26001C39030D00001E59030
By repeating the steps above we get the matrix below:
PQRSTA313230B04001C17030D00223E37030
We repeat the steps above to get the matrix below:
PQRSTA302220B04102C06030D00324E26020
Since the no. of lines = No. of row/column=5, optimal solution is possible. Here by following the steps we first allot at cell13 [12 means 1st Row 3rd Column] now tie appears as there are more than one zeros in remaining rows/columns. So, we arbitrarily allot assignment in Cell24, then we allot assignment in cell35, cell42 and cell 51. Therefore our final answer is:
SalespersonPQRSTDistrictsABCDETotalRevenueSalesRevenue65132697276414
Comments
Leave a comment