SlideShare a Scribd company logo
1 of 5
Download to read offline
Journal for Research | Volume 03| Issue 01 | March 2017
ISSN: 2395-7549
All rights reserved by www.journal4research.org 10
A New approach for Solving Transportation
Problem
Manamohan Maharana
Lecturer
Department of Mathematics
M.P.C. (Jr.) College, Baripada, Odisha, India
Abstract
In this paper an innovative method named MM method is proposed for finding an optimal solution directly. A new algorithm in
MM method is discussed in this paper which gives optimal solution. Some example are provided to illustrate the proposed
algorithm and result is compared to MOD I (modified distribution) method. The most attractive feature of this method is that it
requires very simple arithmetical and logical calculation.
Keywords: Transportation Problem, VAM, Optimal Solution, MODI Method, IBFS
_______________________________________________________________________________________________________
I. INTRODUCTION
Transportation Problem is one of the subclasses of LPPs in which objective is to transport various quantities of single commodity
that are initially stored at various origin to different destinations in such a way that the total transportation cost is minimum. Usually
the optimal solution of a balanced transportation problem consists of following two steps.
 To find initial basic feasible solution by different methods such as North-west corner rule (NWCM), Least cost method (LCM),
Vogel’s Approximation method (VAM) etc.
 To obtain an optimal solution by making successive improvements to initial basic feasible solution by MODI (modified
distribution) method.
The above mentioned method needs more iteration to arrive optimal solution. This paper presents a new simple approach to
solve the transportation problem. The proposed method helps to get directly optimal solution with less iteration.
The arrangement of papers is as follow s, in section II mathematical representation, in section III proposed algorithm named
MM method, in section IV numerical examples have been solved, finally comparison of minimized cost by VAM and MODI
method is given, in section V the conclusion has been discussed.
II. MATHEMATICAL REPRESENTATION
Suppose there are m factories called origins or sources produce aI (i=1,2……,m) units of products which are to be transported to
n destinations with bJ (J=1,2,……,n) unity of demands. CIJ be the cost of source from origin I to destination j. Then the problem is
to determine XIJ, the transported from ith source to jth destination, in such way that the transportation cost is minimized. A
transportation problem is said to be balanced if the total supply from all source equals the total demand in all destination, otherwise
it is called Unbalanced.
Table – 1
Mathematical Representation
Origin (i)
Destination(j)
Supply(aJ)
1 2 ……………….. n
1 C11 C12 ……………… C1n a1
2 C21 C22 ……………… C2n a2
3 C31 C32 ……………….. C3n a3
………. ……….. ………… ……….. ……………… ………….
m Cm1 Cm2 ………………. cmn am
Demand(bJ) b! b2 …………… bn ∑aI =∑bJ
Mathematically the problem can be stated as
Minimize Z=∑I=1
m
∑J=1
n
CIJxIJ
Subject to∑ 𝑥𝑛
𝑖=1 IJ=aI for i=1, 2 ……….m (supply constraints)
∑ 𝑥𝑚
𝑖=1 IJ=bj for j=1, 2, 3…………n (demand constraints)
xIJ≥0 for all I and j.
A New approach for Solving Transportation Problem
(J4R/ Volume 03 / Issue 01 / 003)
All rights reserved by www.journalforresearch.org 11
III. PROPOSED ALGORITHM
Algorithm for solving Transportation problem
1) Construct the transportation matrix from the given transportation problem.
2) Subtract each row entries of the transportation table from respective row minimum and subtract each column entries of the
resulting transportation table from respective column minimum.
3) Now there will be at least one 0 in each row and each column in the reduced cost matrix. Suppose first zero (row wise)
occurring in (I j) th cell, find total sum of all the costs in ith cell and jth column. Repeat the process for all the zeros. Allocate
the maximum possible amount to the cell at the of zero where sum is maximum. Delete the row or column for further
calculation where supply from a given source is depleted or demand for a given destination is satisfied.
4) Check whether the resultant matrix process at least one 0 in each row and each column. If not repeat step 2 otherwise go to
step 5.
5) Repeat step 3 to step4 until and unless all the demands and supplies are exhausted OR Repeat step 3 to step4
For remaining sources and destinations till (m+n-1) cells are allocated.
6) Finally total minimum cost is calculated as sum of the product of cost and corresponding allocated value of supply/demand
T c=∑I=1
n
∑J=1
m
CIJxIJ
Numerical examples
Example 1: Transportation problem having three origins and five destinations
Table – 2
Numerical examples
A B C D E supply
O1 5 3 4 3 7 9
O2 6 5 6 3 4 12
O3 7 6 2 8 4 16
demand 5 6 8 9 9 37
Solution
Step 1: Subtract minimum cost of each row from each entries of the respective row and subtract minimum cost of each column
from each entries of respective column
Table – 3
Numerical examples
A B C D E supply
O1 0 0 1 0 3 9
O2 1 2 3 0 0 12
O3 3 4 0 6 1 16
demand 5 6 8 9 9 37
Sum of the cost at (O1,A) = 1+3+1+3=8, at (O1,B) = 1+3+2+4=10, at (O1,D) = 1+3+6=10, at (O2,D) = 1+2+3+6=12, at (O2,E)
= 1+2+3+3+1=10, at (O3,C) = 3+4+6+1+1+3=18
Since at (O3,C) sum of all cost at O3 &C is maximum.
Allocate the cell (O3, C), min (8, 16) =8 we get x33=8 and delete C
Table – 4
Numerical examples
A B D E supply
O1 0 0 0 3 9
O2 1 2 0 0 12
O3 2 3 5 0 8
demand 5 6 9 9 29
Sum of the cost at (O1, A) = 3+1+2=6, at (O1,B) = 3+2+3=8, at (O1,D) = 3+5=8, at (O2,D) = 1+2+5=8, at (O2,E) = 1+2+3=6, at
(O3,E) = 2+3+5+3=13
Allocate the cell (O3, E) (since sum of all cost at O3 &E is max), min (9, 8) =8 we get x35=8 and delete O3
Table – 5
Numerical examples
A B D E supply
O1 0 0 0 3 9
O2 1 2 0 0 12
demand 5 6 9 1 21
Sum of the cost at (O1,A)=3+1=4,at(O1,B)=3+2=5,at(O1,D)=3,at(O2,D)=1+2=2,at (O2,E)=1+2+3=6
Allocate the cell (O2, E) (since sum of all cost at O2 &E is max), min (1, 12) =1 we get x25=1 and delete E
Table – 6
Numerical examples
A B D supply
O1 0 0 0 9
A New approach for Solving Transportation Problem
(J4R/ Volume 03 / Issue 01 / 003)
All rights reserved by www.journalforresearch.org 12
O2 1 2 0 11
demand 5 6 9 20
Sum of the cost at (O1,A)=1,at(O1,B)=2,at(O1,D)=0,at(O2,D)=1+2=3.
Allocate the cell (O2, D) (since sum of all cost at O2 &D is max), min (9, 11) =9 we get x24=9 and delete D
Table – 7
Numerical examples
A B supply
O1 0 0 9
O2 0 1 2
demand 5 6 11
Sum of the cost at (O1, A )=0,at(O1,B)=1,at(O2,A) =1. Here at (O1,B) = 1 & at (O2,A) =1, So choose(O2,A)
Allocate the cell (O2, A), min (5, 2) = 2 we get x21=2 and delete O2
Table – 8
Numerical examples
A B supply
O1 0 0 9
demand 3 6 9
Allocate the cell (O`1, A), min (3, 9) =3 we get x11=3 and delete A
Allocate the cell (O1, B) i.e. x12=6
Therefore x11 =3, x 12=6, x21 =2 ,x24 =9 ,x25=1 ,x33 =8 ,x35=8
T.C. =5*3+3*6+6*2+3*9+4*1+2*8+4*8=124
IV. OPTIMALITY CHECK
To find basic feasible solution for the above example VAM method is used and allocation are obtained as follows
Table – 9
Numerical examples
A B C D E supply
O1 5 3 4 3 7 9
O2 6 5 6 3 4 12
O3 7 6 2 8 4 16
demand 5 6 8 9 9 37
X 11=3 , x12=6,x21=2, x24=9 , x25=1, x33=8, x35=8
Total cost associated with these allocations is 124. To get optimal solution MODI method is adapted and by applying MODI
method the optimal solution is obtain as 124.It can be seen that the value of the transportation cost obtain by MM method is same
as the optimal value obtain by MODI method. Thus the value obtained by MM method i.e.124 is also optimal solution.
Example 2: Transportation problem having three origins and four destinations
Table – 10
Numerical examples
D1 D2 D3 D4 SUPPLY
O1 2 3 11 7 6
O2 1 0 6 1 1
O3 5 8 15 9 10
Demand 7 5 3 2 17
 Solution
Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each
entries of respective column.
Table – 11
Numerical examples
D1 D2 D3 D4 supply
O1 0 1 3 4 6
O2 1 0 0 0 1
O3 0 3 4 3 10
demand 7 5 3 2 17
Sum of the cost at (O1,D1)=1+3+4+1=9,at(O2,D2)=1+1+3=5,at(O2,D3)=1+3+4=8,at(O2,D4)=1+4+3=8,at (O3,D1)=3+4+3+1=11.
Since at (O3,D1) sum of all cost at O3 &D1 is maximum.
Allocate the cell (O3, D1), min (7, 10) =7 we get x31=7 and delete D1
Table – 12
Numerical examples
D2 D3 D4 supply
O1 1 3 4 6
O2 0 0 0 1
A New approach for Solving Transportation Problem
(J4R/ Volume 03 / Issue 01 / 003)
All rights reserved by www.journalforresearch.org 13
O3 3 4 3 3
demand 5 3 2 10
Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each
entries of respective column.
Table – 13
Numerical examples
D2 D3 D4 supply
O1 0 2 3 6
O2 0 0 0 1
O3 0 1 0 3
demand 5 3 2 10
Sum of the cost at (O1,D2)=2+3=5,at(O2,D2)=0,at(O2,D3)=2+1=3,at(O2,D4)=3,at (O3,D2)=1,at (O3,D4)=1+3=4.
Since at (O1,D2) sum of all cost at O1 &D2 is maximum.
Allocate the cell (O1, D2), min (6, 5) =5 we get x12=5 and delete D2
Table – 14
Numerical examples
D3 D4 supply
O1 2 3 1
O2 0 0 1
O3 1 0 3
demand 3 2 5
Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each
entries of respective column.
Table – 15
Numerical examples
D3 D4 supply
O1 0 1 1
O2 0 0 1
O3 1 0 3
demand 3 2 5
Sum of the cost at (O1,D3)=1+1=2,at(O2,D3)=1,at(O2,D4)=1,at(O3,D4)=1+1=2
Allocate the cell (O1, D3), min (1, 3) =1 we get x13=1 and delete O1
Table – 16
Numerical examples
D3 D4 supply
O2 0 0 1
O3 1 0 3
demand 2 2 4
Sum of the cost at (O2,D3)=1,at(O2,D4)=0,at(O3,D4)=1.
Allocate the cell (O2, D3), min (1, 2) =1 we get x23=1 and delete O2
Table – 17
Numerical examples
D3 D4 supply
O3 1 0 3
demand 1 2 3
Allocate the cell (O3, D4), min (3, 2) =2 we get x34=2 and delete D4
Allocate the cell (O3, D3) =1 we get x33=1
Solution by MM method X 12=5 , x13=1,x23=1, x31=7 , x33=1, x34=2 T.C.=3*5+11*1+6*1+5*7+15*1+9*2=110
Solution by VAM&MODI method X 12=5 , x13=1,x23=1, x31=7 , x33=1, x34=2 T.C.=3*5+11*1+6*1+5*7+15*1+9*2=110
Example 3
Transportation problem having three origins and three destinations
Table – 18
Numerical examples
D1 D2 D3 SUPPLY
O1 7 3 4 2
O2 2 1 3 3
O3 3 4 6 5
Demand 4 1 5 10
 Solution by MM method X 13=2, x22=1, x23=2, x31=4, x33=1, T.C. =4*2+1*1+3*2+3*4+6*1=33
 Solution by VAM&MODI method X 13=2, x22=1, x23=2, x31=4, x33=1, T.C.=4*2+1*1+3*2+3*4+6*1=33
A New approach for Solving Transportation Problem
(J4R/ Volume 03 / Issue 01 / 003)
All rights reserved by www.journalforresearch.org 14
V. CONCLUSION
The optimal solution obtained in the above proposed algorithm is same as that of MODI method or Vogel’s Approximation method.
The proposed algorithm is easy to understand and consume less time. Thus it can be conclude that MM method provides optimal
solution directly in less iteration for transportation problems. It will be very helpful for decision makers who are dealing with
logistic and supply chain problems.
REFERENCES
[1] Kanti Swarup, P.k Gupta, Manamohan-Operation Research, S Chand and Sons Educational Publishers
[2] R, K.Gupta, Linear Programming, Krishna Prakashan (p) Ltd
[3] Gass, Linear Programming, MC-Grew-Hill New York
[4] Dantzig G B Linear Programming and Extensions New Jersey: Princeton University Press
[5] Sharma J K, Operation Research Theory and Application, Macmillan India
[6] Tata H A, Operation Research Introduction, Prentice Hill of India (PVT), New Delhi
[7] A Chames, W W Cooper and A Henderson, An Introduction to L P<Wiley New York
[8] N.M.Deshmukh, An Innovative method For Solving Transportation Problem International Journal of physics and mathematical science pp 86-89

More Related Content

What's hot

ISI MSQE Entrance Question Paper (2011)
ISI MSQE Entrance Question Paper (2011)ISI MSQE Entrance Question Paper (2011)
ISI MSQE Entrance Question Paper (2011)CrackDSE
 
Q paper I puc-2014(MATHEMATICS)
Q paper I puc-2014(MATHEMATICS)Q paper I puc-2014(MATHEMATICS)
Q paper I puc-2014(MATHEMATICS)Bagalkot
 
129215 specimen-paper-and-mark-schemes
129215 specimen-paper-and-mark-schemes129215 specimen-paper-and-mark-schemes
129215 specimen-paper-and-mark-schemesKing Ali
 
Ch4 Boolean Algebra And Logic Simplication1
Ch4 Boolean Algebra And Logic Simplication1Ch4 Boolean Algebra And Logic Simplication1
Ch4 Boolean Algebra And Logic Simplication1Qundeel
 
A New Double Numerical Integration Formula Based On The First Order Derivative
A New Double Numerical Integration Formula Based On The First Order DerivativeA New Double Numerical Integration Formula Based On The First Order Derivative
A New Double Numerical Integration Formula Based On The First Order DerivativeIRJESJOURNAL
 
Basic gates and boolean algebra
Basic gates and boolean algebraBasic gates and boolean algebra
Basic gates and boolean algebraSudheesh S Madhav
 
Mathematics model papers for class xi
Mathematics model papers for class xiMathematics model papers for class xi
Mathematics model papers for class xiAPEX INSTITUTE
 
CBSE XI MATHS SOLVED PAPER
CBSE XI MATHS SOLVED PAPERCBSE XI MATHS SOLVED PAPER
CBSE XI MATHS SOLVED PAPERGautham Rajesh
 
Linear programming graphical method
Linear programming graphical methodLinear programming graphical method
Linear programming graphical methodDr. Abdulfatah Salem
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations researchDr. Abdulfatah Salem
 
Transportation problem
Transportation problemTransportation problem
Transportation problemGiselle Gaas
 
Notes on Equation of Plane
Notes on Equation of PlaneNotes on Equation of Plane
Notes on Equation of PlaneHerbert Mujungu
 
شيت دمحمددسوقى
شيت دمحمددسوقىشيت دمحمددسوقى
شيت دمحمددسوقىabdoo2020
 
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf4
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf42016 10 mathematics_sample_paper_sa2_01_ans_z9gf4
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf4Shreya Sharma
 

What's hot (20)

ISI MSQE Entrance Question Paper (2011)
ISI MSQE Entrance Question Paper (2011)ISI MSQE Entrance Question Paper (2011)
ISI MSQE Entrance Question Paper (2011)
 
S.Y.B.Sc. 2013 Pattern Old question Paper
S.Y.B.Sc. 2013 Pattern Old question PaperS.Y.B.Sc. 2013 Pattern Old question Paper
S.Y.B.Sc. 2013 Pattern Old question Paper
 
Q paper I puc-2014(MATHEMATICS)
Q paper I puc-2014(MATHEMATICS)Q paper I puc-2014(MATHEMATICS)
Q paper I puc-2014(MATHEMATICS)
 
129215 specimen-paper-and-mark-schemes
129215 specimen-paper-and-mark-schemes129215 specimen-paper-and-mark-schemes
129215 specimen-paper-and-mark-schemes
 
Me gate'14-paper-01
Me gate'14-paper-01Me gate'14-paper-01
Me gate'14-paper-01
 
Ch4 Boolean Algebra And Logic Simplication1
Ch4 Boolean Algebra And Logic Simplication1Ch4 Boolean Algebra And Logic Simplication1
Ch4 Boolean Algebra And Logic Simplication1
 
Transportation problem
Transportation problemTransportation problem
Transportation problem
 
A New Double Numerical Integration Formula Based On The First Order Derivative
A New Double Numerical Integration Formula Based On The First Order DerivativeA New Double Numerical Integration Formula Based On The First Order Derivative
A New Double Numerical Integration Formula Based On The First Order Derivative
 
Basic gates and boolean algebra
Basic gates and boolean algebraBasic gates and boolean algebra
Basic gates and boolean algebra
 
Mathematics model papers for class xi
Mathematics model papers for class xiMathematics model papers for class xi
Mathematics model papers for class xi
 
CBSE XI MATHS SOLVED PAPER
CBSE XI MATHS SOLVED PAPERCBSE XI MATHS SOLVED PAPER
CBSE XI MATHS SOLVED PAPER
 
Functions JC H2 Maths
Functions JC H2 MathsFunctions JC H2 Maths
Functions JC H2 Maths
 
Linear programming graphical method
Linear programming graphical methodLinear programming graphical method
Linear programming graphical method
 
Introduction to operations research
Introduction to operations researchIntroduction to operations research
Introduction to operations research
 
OR 14 15-unit_2
OR 14 15-unit_2OR 14 15-unit_2
OR 14 15-unit_2
 
Probability and statistics assignment help
Probability and statistics assignment helpProbability and statistics assignment help
Probability and statistics assignment help
 
Transportation problem
Transportation problemTransportation problem
Transportation problem
 
Notes on Equation of Plane
Notes on Equation of PlaneNotes on Equation of Plane
Notes on Equation of Plane
 
شيت دمحمددسوقى
شيت دمحمددسوقىشيت دمحمددسوقى
شيت دمحمددسوقى
 
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf4
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf42016 10 mathematics_sample_paper_sa2_01_ans_z9gf4
2016 10 mathematics_sample_paper_sa2_01_ans_z9gf4
 

Similar to A NEW APPROACH FOR SOLVING TRANSPORTATION PROBLEM

Unit.5. transportation and assignment problems
Unit.5. transportation and assignment problemsUnit.5. transportation and assignment problems
Unit.5. transportation and assignment problemsDagnaygebawGoshme
 
unit2 linear programming problem in .pdf
unit2 linear programming problem in .pdfunit2 linear programming problem in .pdf
unit2 linear programming problem in .pdfbizuayehuadmasu1
 
unit-5 Transportation problem in operation research ppt.pdf
unit-5 Transportation problem in operation research ppt.pdfunit-5 Transportation problem in operation research ppt.pdf
unit-5 Transportation problem in operation research ppt.pdfbizuayehuadmasu1
 
OR CH 3 Transportation and assignment problem.pptx
OR CH 3 Transportation and assignment problem.pptxOR CH 3 Transportation and assignment problem.pptx
OR CH 3 Transportation and assignment problem.pptxAbdiMuceeTube
 
Chapter 5.TRANSPORTATION PROBLEM.pdf
Chapter 5.TRANSPORTATION PROBLEM.pdfChapter 5.TRANSPORTATION PROBLEM.pdf
Chapter 5.TRANSPORTATION PROBLEM.pdfTsegay Berhe
 
LP network chapter 5 transportation and assignment problem
LP  network chapter 5 transportation and assignment problemLP  network chapter 5 transportation and assignment problem
LP network chapter 5 transportation and assignment problemHarun Al-Rasyid Lubis
 
Iaetsd ones method for finding an optimal
Iaetsd ones method for finding an optimalIaetsd ones method for finding an optimal
Iaetsd ones method for finding an optimalIaetsd Iaetsd
 
0580 w07 qp_2
0580 w07 qp_20580 w07 qp_2
0580 w07 qp_2King Ali
 
0580 w07 qp_2
0580 w07 qp_20580 w07 qp_2
0580 w07 qp_2King Ali
 
TransportationProblem.ppt
TransportationProblem.pptTransportationProblem.ppt
TransportationProblem.pptDebadattaPanda4
 
TransportationProblem.ppt
TransportationProblem.pptTransportationProblem.ppt
TransportationProblem.pptImFit
 
IRJET- Developed Method for Optimal Solution of Transportation Problem
IRJET- Developed Method for Optimal Solution of Transportation ProblemIRJET- Developed Method for Optimal Solution of Transportation Problem
IRJET- Developed Method for Optimal Solution of Transportation ProblemIRJET Journal
 
A New Method for Solving Transportation Problems Considering Average Penalty
A New Method for Solving Transportation Problems Considering Average PenaltyA New Method for Solving Transportation Problems Considering Average Penalty
A New Method for Solving Transportation Problems Considering Average PenaltyIOSRJM
 
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...Dr. Amarjeet Singh
 
Modified Distribution Method (MODI)
Modified Distribution Method (MODI)Modified Distribution Method (MODI)
Modified Distribution Method (MODI)Cool Guy
 
Transportation and assignment_problem
Transportation and assignment_problemTransportation and assignment_problem
Transportation and assignment_problemAnkit Katiyar
 
Transportation.pptx
Transportation.pptxTransportation.pptx
Transportation.pptxSauravDash10
 
352735352 rsh-qam11-tif-09-doc
352735352 rsh-qam11-tif-09-doc352735352 rsh-qam11-tif-09-doc
352735352 rsh-qam11-tif-09-docFiras Husseini
 

Similar to A NEW APPROACH FOR SOLVING TRANSPORTATION PROBLEM (20)

Unit.5. transportation and assignment problems
Unit.5. transportation and assignment problemsUnit.5. transportation and assignment problems
Unit.5. transportation and assignment problems
 
unit2 linear programming problem in .pdf
unit2 linear programming problem in .pdfunit2 linear programming problem in .pdf
unit2 linear programming problem in .pdf
 
unit-5 Transportation problem in operation research ppt.pdf
unit-5 Transportation problem in operation research ppt.pdfunit-5 Transportation problem in operation research ppt.pdf
unit-5 Transportation problem in operation research ppt.pdf
 
OR CH 3 Transportation and assignment problem.pptx
OR CH 3 Transportation and assignment problem.pptxOR CH 3 Transportation and assignment problem.pptx
OR CH 3 Transportation and assignment problem.pptx
 
OR PPT.pdf
OR PPT.pdfOR PPT.pdf
OR PPT.pdf
 
Chapter 5.TRANSPORTATION PROBLEM.pdf
Chapter 5.TRANSPORTATION PROBLEM.pdfChapter 5.TRANSPORTATION PROBLEM.pdf
Chapter 5.TRANSPORTATION PROBLEM.pdf
 
LP network chapter 5 transportation and assignment problem
LP  network chapter 5 transportation and assignment problemLP  network chapter 5 transportation and assignment problem
LP network chapter 5 transportation and assignment problem
 
Iaetsd ones method for finding an optimal
Iaetsd ones method for finding an optimalIaetsd ones method for finding an optimal
Iaetsd ones method for finding an optimal
 
Assign transportation
Assign transportationAssign transportation
Assign transportation
 
0580 w07 qp_2
0580 w07 qp_20580 w07 qp_2
0580 w07 qp_2
 
0580 w07 qp_2
0580 w07 qp_20580 w07 qp_2
0580 w07 qp_2
 
TransportationProblem.ppt
TransportationProblem.pptTransportationProblem.ppt
TransportationProblem.ppt
 
TransportationProblem.ppt
TransportationProblem.pptTransportationProblem.ppt
TransportationProblem.ppt
 
IRJET- Developed Method for Optimal Solution of Transportation Problem
IRJET- Developed Method for Optimal Solution of Transportation ProblemIRJET- Developed Method for Optimal Solution of Transportation Problem
IRJET- Developed Method for Optimal Solution of Transportation Problem
 
A New Method for Solving Transportation Problems Considering Average Penalty
A New Method for Solving Transportation Problems Considering Average PenaltyA New Method for Solving Transportation Problems Considering Average Penalty
A New Method for Solving Transportation Problems Considering Average Penalty
 
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...
A New Approach to Solve Initial Basic Feasible Solution for the Transportatio...
 
Modified Distribution Method (MODI)
Modified Distribution Method (MODI)Modified Distribution Method (MODI)
Modified Distribution Method (MODI)
 
Transportation and assignment_problem
Transportation and assignment_problemTransportation and assignment_problem
Transportation and assignment_problem
 
Transportation.pptx
Transportation.pptxTransportation.pptx
Transportation.pptx
 
352735352 rsh-qam11-tif-09-doc
352735352 rsh-qam11-tif-09-doc352735352 rsh-qam11-tif-09-doc
352735352 rsh-qam11-tif-09-doc
 

More from Journal For Research

Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...
Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...
Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...Journal For Research
 
Experimental Verification and Validation of Stress Distribution of Composite ...
Experimental Verification and Validation of Stress Distribution of Composite ...Experimental Verification and Validation of Stress Distribution of Composite ...
Experimental Verification and Validation of Stress Distribution of Composite ...Journal For Research
 
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Journal For Research
 
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016Journal For Research
 
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...Journal For Research
 
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015Journal For Research
 
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014Journal For Research
 
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...Journal For Research
 
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...Journal For Research
 
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012Journal For Research
 
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...Journal For Research
 
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009Journal For Research
 
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008Journal For Research
 
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002Journal For Research
 
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001Journal For Research
 
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021Journal For Research
 
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...Journal For Research
 
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023Journal For Research
 
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024Journal For Research
 

More from Journal For Research (20)

Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...
Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...
Design and Analysis of Hydraulic Actuator in a Typical Aerospace vehicle | J4...
 
Experimental Verification and Validation of Stress Distribution of Composite ...
Experimental Verification and Validation of Stress Distribution of Composite ...Experimental Verification and Validation of Stress Distribution of Composite ...
Experimental Verification and Validation of Stress Distribution of Composite ...
 
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
Image Binarization for the uses of Preprocessing to Detect Brain Abnormality ...
 
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016
A Research Paper on BFO and PSO Based Movie Recommendation System | J4RV4I1016
 
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
 
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015
A REVIEW PAPER ON BFO AND PSO BASED MOVIE RECOMMENDATION SYSTEM | J4RV4I1015
 
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
 
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...
A REVIEW ON DESIGN OF PUBLIC TRANSPORTATION SYSTEM IN CHANDRAPUR CITY | J4RV4...
 
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...
A REVIEW ON LIFTING AND ASSEMBLY OF ROTARY KILN TYRE WITH SHELL BY FLEXIBLE G...
 
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012
LABORATORY STUDY OF STRONG, MODERATE AND WEAK SANDSTONES | J4RV4I1012
 
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...
DESIGN ANALYSIS AND FABRICATION OF MANUAL RICE TRANSPLANTING MACHINE | J4RV4I...
 
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009
AN OVERVIEW: DAKNET TECHNOLOGY - BROADBAND AD-HOC CONNECTIVITY | J4RV4I1009
 
LINE FOLLOWER ROBOT | J4RV4I1010
LINE FOLLOWER ROBOT | J4RV4I1010LINE FOLLOWER ROBOT | J4RV4I1010
LINE FOLLOWER ROBOT | J4RV4I1010
 
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
 
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002
AN INTEGRATED APPROACH TO REDUCE INTRA CITY TRAFFIC AT COIMBATORE | J4RV4I1002
 
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001
A REVIEW STUDY ON GAS-SOLID CYCLONE SEPARATOR USING LAPPLE MODEL | J4RV4I1001
 
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
IMAGE SEGMENTATION USING FCM ALGORITM | J4RV3I12021
 
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...
USE OF GALVANIZED STEELS FOR AUTOMOTIVE BODY- CAR SURVEY RESULTS AT COASTAL A...
 
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023
UNMANNED AERIAL VEHICLE FOR REMITTANCE | J4RV3I12023
 
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024
SURVEY ON A MODERN MEDICARE SYSTEM USING INTERNET OF THINGS | J4RV3I12024
 

Recently uploaded

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 

Recently uploaded (20)

Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 

A NEW APPROACH FOR SOLVING TRANSPORTATION PROBLEM

  • 1. Journal for Research | Volume 03| Issue 01 | March 2017 ISSN: 2395-7549 All rights reserved by www.journal4research.org 10 A New approach for Solving Transportation Problem Manamohan Maharana Lecturer Department of Mathematics M.P.C. (Jr.) College, Baripada, Odisha, India Abstract In this paper an innovative method named MM method is proposed for finding an optimal solution directly. A new algorithm in MM method is discussed in this paper which gives optimal solution. Some example are provided to illustrate the proposed algorithm and result is compared to MOD I (modified distribution) method. The most attractive feature of this method is that it requires very simple arithmetical and logical calculation. Keywords: Transportation Problem, VAM, Optimal Solution, MODI Method, IBFS _______________________________________________________________________________________________________ I. INTRODUCTION Transportation Problem is one of the subclasses of LPPs in which objective is to transport various quantities of single commodity that are initially stored at various origin to different destinations in such a way that the total transportation cost is minimum. Usually the optimal solution of a balanced transportation problem consists of following two steps.  To find initial basic feasible solution by different methods such as North-west corner rule (NWCM), Least cost method (LCM), Vogel’s Approximation method (VAM) etc.  To obtain an optimal solution by making successive improvements to initial basic feasible solution by MODI (modified distribution) method. The above mentioned method needs more iteration to arrive optimal solution. This paper presents a new simple approach to solve the transportation problem. The proposed method helps to get directly optimal solution with less iteration. The arrangement of papers is as follow s, in section II mathematical representation, in section III proposed algorithm named MM method, in section IV numerical examples have been solved, finally comparison of minimized cost by VAM and MODI method is given, in section V the conclusion has been discussed. II. MATHEMATICAL REPRESENTATION Suppose there are m factories called origins or sources produce aI (i=1,2……,m) units of products which are to be transported to n destinations with bJ (J=1,2,……,n) unity of demands. CIJ be the cost of source from origin I to destination j. Then the problem is to determine XIJ, the transported from ith source to jth destination, in such way that the transportation cost is minimized. A transportation problem is said to be balanced if the total supply from all source equals the total demand in all destination, otherwise it is called Unbalanced. Table – 1 Mathematical Representation Origin (i) Destination(j) Supply(aJ) 1 2 ……………….. n 1 C11 C12 ……………… C1n a1 2 C21 C22 ……………… C2n a2 3 C31 C32 ……………….. C3n a3 ………. ……….. ………… ……….. ……………… …………. m Cm1 Cm2 ………………. cmn am Demand(bJ) b! b2 …………… bn ∑aI =∑bJ Mathematically the problem can be stated as Minimize Z=∑I=1 m ∑J=1 n CIJxIJ Subject to∑ 𝑥𝑛 𝑖=1 IJ=aI for i=1, 2 ……….m (supply constraints) ∑ 𝑥𝑚 𝑖=1 IJ=bj for j=1, 2, 3…………n (demand constraints) xIJ≥0 for all I and j.
  • 2. A New approach for Solving Transportation Problem (J4R/ Volume 03 / Issue 01 / 003) All rights reserved by www.journalforresearch.org 11 III. PROPOSED ALGORITHM Algorithm for solving Transportation problem 1) Construct the transportation matrix from the given transportation problem. 2) Subtract each row entries of the transportation table from respective row minimum and subtract each column entries of the resulting transportation table from respective column minimum. 3) Now there will be at least one 0 in each row and each column in the reduced cost matrix. Suppose first zero (row wise) occurring in (I j) th cell, find total sum of all the costs in ith cell and jth column. Repeat the process for all the zeros. Allocate the maximum possible amount to the cell at the of zero where sum is maximum. Delete the row or column for further calculation where supply from a given source is depleted or demand for a given destination is satisfied. 4) Check whether the resultant matrix process at least one 0 in each row and each column. If not repeat step 2 otherwise go to step 5. 5) Repeat step 3 to step4 until and unless all the demands and supplies are exhausted OR Repeat step 3 to step4 For remaining sources and destinations till (m+n-1) cells are allocated. 6) Finally total minimum cost is calculated as sum of the product of cost and corresponding allocated value of supply/demand T c=∑I=1 n ∑J=1 m CIJxIJ Numerical examples Example 1: Transportation problem having three origins and five destinations Table – 2 Numerical examples A B C D E supply O1 5 3 4 3 7 9 O2 6 5 6 3 4 12 O3 7 6 2 8 4 16 demand 5 6 8 9 9 37 Solution Step 1: Subtract minimum cost of each row from each entries of the respective row and subtract minimum cost of each column from each entries of respective column Table – 3 Numerical examples A B C D E supply O1 0 0 1 0 3 9 O2 1 2 3 0 0 12 O3 3 4 0 6 1 16 demand 5 6 8 9 9 37 Sum of the cost at (O1,A) = 1+3+1+3=8, at (O1,B) = 1+3+2+4=10, at (O1,D) = 1+3+6=10, at (O2,D) = 1+2+3+6=12, at (O2,E) = 1+2+3+3+1=10, at (O3,C) = 3+4+6+1+1+3=18 Since at (O3,C) sum of all cost at O3 &C is maximum. Allocate the cell (O3, C), min (8, 16) =8 we get x33=8 and delete C Table – 4 Numerical examples A B D E supply O1 0 0 0 3 9 O2 1 2 0 0 12 O3 2 3 5 0 8 demand 5 6 9 9 29 Sum of the cost at (O1, A) = 3+1+2=6, at (O1,B) = 3+2+3=8, at (O1,D) = 3+5=8, at (O2,D) = 1+2+5=8, at (O2,E) = 1+2+3=6, at (O3,E) = 2+3+5+3=13 Allocate the cell (O3, E) (since sum of all cost at O3 &E is max), min (9, 8) =8 we get x35=8 and delete O3 Table – 5 Numerical examples A B D E supply O1 0 0 0 3 9 O2 1 2 0 0 12 demand 5 6 9 1 21 Sum of the cost at (O1,A)=3+1=4,at(O1,B)=3+2=5,at(O1,D)=3,at(O2,D)=1+2=2,at (O2,E)=1+2+3=6 Allocate the cell (O2, E) (since sum of all cost at O2 &E is max), min (1, 12) =1 we get x25=1 and delete E Table – 6 Numerical examples A B D supply O1 0 0 0 9
  • 3. A New approach for Solving Transportation Problem (J4R/ Volume 03 / Issue 01 / 003) All rights reserved by www.journalforresearch.org 12 O2 1 2 0 11 demand 5 6 9 20 Sum of the cost at (O1,A)=1,at(O1,B)=2,at(O1,D)=0,at(O2,D)=1+2=3. Allocate the cell (O2, D) (since sum of all cost at O2 &D is max), min (9, 11) =9 we get x24=9 and delete D Table – 7 Numerical examples A B supply O1 0 0 9 O2 0 1 2 demand 5 6 11 Sum of the cost at (O1, A )=0,at(O1,B)=1,at(O2,A) =1. Here at (O1,B) = 1 & at (O2,A) =1, So choose(O2,A) Allocate the cell (O2, A), min (5, 2) = 2 we get x21=2 and delete O2 Table – 8 Numerical examples A B supply O1 0 0 9 demand 3 6 9 Allocate the cell (O`1, A), min (3, 9) =3 we get x11=3 and delete A Allocate the cell (O1, B) i.e. x12=6 Therefore x11 =3, x 12=6, x21 =2 ,x24 =9 ,x25=1 ,x33 =8 ,x35=8 T.C. =5*3+3*6+6*2+3*9+4*1+2*8+4*8=124 IV. OPTIMALITY CHECK To find basic feasible solution for the above example VAM method is used and allocation are obtained as follows Table – 9 Numerical examples A B C D E supply O1 5 3 4 3 7 9 O2 6 5 6 3 4 12 O3 7 6 2 8 4 16 demand 5 6 8 9 9 37 X 11=3 , x12=6,x21=2, x24=9 , x25=1, x33=8, x35=8 Total cost associated with these allocations is 124. To get optimal solution MODI method is adapted and by applying MODI method the optimal solution is obtain as 124.It can be seen that the value of the transportation cost obtain by MM method is same as the optimal value obtain by MODI method. Thus the value obtained by MM method i.e.124 is also optimal solution. Example 2: Transportation problem having three origins and four destinations Table – 10 Numerical examples D1 D2 D3 D4 SUPPLY O1 2 3 11 7 6 O2 1 0 6 1 1 O3 5 8 15 9 10 Demand 7 5 3 2 17  Solution Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each entries of respective column. Table – 11 Numerical examples D1 D2 D3 D4 supply O1 0 1 3 4 6 O2 1 0 0 0 1 O3 0 3 4 3 10 demand 7 5 3 2 17 Sum of the cost at (O1,D1)=1+3+4+1=9,at(O2,D2)=1+1+3=5,at(O2,D3)=1+3+4=8,at(O2,D4)=1+4+3=8,at (O3,D1)=3+4+3+1=11. Since at (O3,D1) sum of all cost at O3 &D1 is maximum. Allocate the cell (O3, D1), min (7, 10) =7 we get x31=7 and delete D1 Table – 12 Numerical examples D2 D3 D4 supply O1 1 3 4 6 O2 0 0 0 1
  • 4. A New approach for Solving Transportation Problem (J4R/ Volume 03 / Issue 01 / 003) All rights reserved by www.journalforresearch.org 13 O3 3 4 3 3 demand 5 3 2 10 Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each entries of respective column. Table – 13 Numerical examples D2 D3 D4 supply O1 0 2 3 6 O2 0 0 0 1 O3 0 1 0 3 demand 5 3 2 10 Sum of the cost at (O1,D2)=2+3=5,at(O2,D2)=0,at(O2,D3)=2+1=3,at(O2,D4)=3,at (O3,D2)=1,at (O3,D4)=1+3=4. Since at (O1,D2) sum of all cost at O1 &D2 is maximum. Allocate the cell (O1, D2), min (6, 5) =5 we get x12=5 and delete D2 Table – 14 Numerical examples D3 D4 supply O1 2 3 1 O2 0 0 1 O3 1 0 3 demand 3 2 5 Subtract minimum cost of each row from each entries of respective row and Subtract minimum cost of each column from each entries of respective column. Table – 15 Numerical examples D3 D4 supply O1 0 1 1 O2 0 0 1 O3 1 0 3 demand 3 2 5 Sum of the cost at (O1,D3)=1+1=2,at(O2,D3)=1,at(O2,D4)=1,at(O3,D4)=1+1=2 Allocate the cell (O1, D3), min (1, 3) =1 we get x13=1 and delete O1 Table – 16 Numerical examples D3 D4 supply O2 0 0 1 O3 1 0 3 demand 2 2 4 Sum of the cost at (O2,D3)=1,at(O2,D4)=0,at(O3,D4)=1. Allocate the cell (O2, D3), min (1, 2) =1 we get x23=1 and delete O2 Table – 17 Numerical examples D3 D4 supply O3 1 0 3 demand 1 2 3 Allocate the cell (O3, D4), min (3, 2) =2 we get x34=2 and delete D4 Allocate the cell (O3, D3) =1 we get x33=1 Solution by MM method X 12=5 , x13=1,x23=1, x31=7 , x33=1, x34=2 T.C.=3*5+11*1+6*1+5*7+15*1+9*2=110 Solution by VAM&MODI method X 12=5 , x13=1,x23=1, x31=7 , x33=1, x34=2 T.C.=3*5+11*1+6*1+5*7+15*1+9*2=110 Example 3 Transportation problem having three origins and three destinations Table – 18 Numerical examples D1 D2 D3 SUPPLY O1 7 3 4 2 O2 2 1 3 3 O3 3 4 6 5 Demand 4 1 5 10  Solution by MM method X 13=2, x22=1, x23=2, x31=4, x33=1, T.C. =4*2+1*1+3*2+3*4+6*1=33  Solution by VAM&MODI method X 13=2, x22=1, x23=2, x31=4, x33=1, T.C.=4*2+1*1+3*2+3*4+6*1=33
  • 5. A New approach for Solving Transportation Problem (J4R/ Volume 03 / Issue 01 / 003) All rights reserved by www.journalforresearch.org 14 V. CONCLUSION The optimal solution obtained in the above proposed algorithm is same as that of MODI method or Vogel’s Approximation method. The proposed algorithm is easy to understand and consume less time. Thus it can be conclude that MM method provides optimal solution directly in less iteration for transportation problems. It will be very helpful for decision makers who are dealing with logistic and supply chain problems. REFERENCES [1] Kanti Swarup, P.k Gupta, Manamohan-Operation Research, S Chand and Sons Educational Publishers [2] R, K.Gupta, Linear Programming, Krishna Prakashan (p) Ltd [3] Gass, Linear Programming, MC-Grew-Hill New York [4] Dantzig G B Linear Programming and Extensions New Jersey: Princeton University Press [5] Sharma J K, Operation Research Theory and Application, Macmillan India [6] Tata H A, Operation Research Introduction, Prentice Hill of India (PVT), New Delhi [7] A Chames, W W Cooper and A Henderson, An Introduction to L P<Wiley New York [8] N.M.Deshmukh, An Innovative method For Solving Transportation Problem International Journal of physics and mathematical science pp 86-89