How Can a Company Optimize Shipping Costs While Meeting Warehouse Demands?

  • Thread starter Thread starter maxsthekat
  • Start date Start date
  • Tags Tags
    Algebra
AI Thread Summary
The discussion centers on optimizing shipping costs for a company manufacturing loudspeakers at two plants, with specific output limits and shipping costs to three warehouses. The goal is to meet the warehouses' minimum requirements while minimizing shipping expenses. Participants suggest using linear programming to formulate the problem, emphasizing the need for inequalities rather than equalities in the constraints. A proposed solution involves shipping a combination of units from both plants to the warehouses based on cost efficiency, with one participant noting that shipping more than the minimum required will increase costs. The conversation highlights the importance of correctly setting up the equations to solve the problem effectively.
maxsthekat
Messages
55
Reaction score
0

Homework Statement


A friend of mine passed along this problem he's having trouble with in a business class, and I have to admit, I'm a bit stumped coming up with the proper mathematical framework for it. Here's the problem:

A company manufactures loudspeakers in plants I and II. Output at plant I is at most 800 units per month, output at plant II is at most 600 units per month. The units are shipped seperately to three warehouses, A, B, and C, whose minimum monthly requirements are 500, 400, and 400 units respectively. Shipping costs for plant I to warehouses A, B, and C are $16, $20, and $22 per unit, repectively, and shipping costs for plant II to each warehouse are $18, $16, and $14, respectively. What shipping schedule will enable the company to meet the warehouses' requirements and at the same time minimize shipping costs?


The attempt at a solution
Basically, I looked at minimizing the cost for the shipping. Since plant I is cheaper to send to warehouse A, and plant II is cheaper to send to B and C, I then looked at which warehouse would minimize costs. So, I had plant II send 400 units to C and 200 units to B. This leaves plant I sending 200 units to B, and 500 units to A.

This looks right to me, but I'm curious, is there a way to set this up with equations to get an exact and correct answer? I tried setting this up with a system of equations like this:

(Plant I's production I'm calling x, y, and z for shipping to the three warehouses, respectively. Plant II's production I'm calling A, B, and C for shipping to the three warehouses)

x + A = 500
y + B = 400
z + C = 400
A + B + C = 600
x + y + z = 700

However, this is six unknowns with only five equations... Also, I'm having to assume that plant II (A + B + C) will be maxed out in it's production. Is there any way to approach this where I don't have to make those sorts of assumptions?

Thanks for your help!

-Max
 
Physics news on Phys.org
This is no ordinary algebra question.

For the number of units ship from Manufacturer I to Factory A we represent as A_{I} and the rest of other combination will follow the similar notation.
attachment.php?attachmentid=22638&stc=1&d=1261409738.jpg
 

Attachments

  • qn.jpg
    qn.jpg
    18.7 KB · Views: 504
Last edited:
Right. So are you suggesting this is a combinatorics problem? If so, I'll have to start reading up on that-- the highest I've taken is linear algebra and ODE.
 
maxsthekat said:
Right. So are you suggesting this is a combinatorics problem? If so, I'll have to start reading up on that-- the highest I've taken is linear algebra and ODE.

Its not combinatoric problem.
I have no ideal how to get started too .
Lets wait for the homework helpers to assist.(=
 
{500,200,0,0,200,400} is the best arrangement you can get if i have no mistake.
My solution is derived mainly by logic , if you need the proof i have give it to you but I'm afraid i can't translate it into a good explanation.
 
Simplex algorithm?

This is a linear programming problem.
 
This is indeed a linear programming problem. The main point here is that the total cost of shipping speakers from the two plants to the three warehouses is to be minimized, subject to all of the constraints. icystrike is on the right path except that his first equation should be an inequality. That is, AI + BI + CI + AII + BII + CII \geq 1300.

I'm using the same variable names as icystrike used, where AI represents the number of speakers sent to warehouse A from plant I. The other five variables have similar names.

There should be only one equation - the one for shipping cost. All other relationships are inequalities.
 
Mark44 said:
This is indeed a linear programming problem. The main point here is that the total cost of shipping speakers from the two plants to the three warehouses is to be minimized, subject to all of the constraints. icystrike is on the right path except that his first equation should be an inequality. That is, AI + BI + CI + AII + BII + CII \geq 1300.

I'm using the same variable names as icystrike used, where AI represents the number of speakers sent to warehouse A from plant I. The other five variables have similar names.

There should be only one equation - the one for shipping cost. All other relationships are inequalities.

It's easy to see that shipping more than the required minimum to any warehouse can only
increase costs. So the relation can be an equality and you could use it to eliminate one of
the variables.

Icystrike also combined the equations for the 3 warehouses. I can see no reason to do this
If you have AI+AII = 500 and B{SUB]I[/SUB]+BII = 400 and
CI+CII = 400 it implies AI + BI + CI + AII + BII + CII = 1300, but the converse need not be true.

The 3 equations can be used to eliminate 3 variables (but you wouldn't do that if you're going to use the simplex method)
 
Back
Top