[Math] Finite Math Word Problem

linear programming

I have been having trouble with this word problem for a while.

A bicycle manufacturer builds one-, three-, and ten-speed models. The bicycles need both aluminum and steel. The company has available 50,075 units of steel and 62,160 units of aluminum. The one,-three, and ten speed models need, respectively, 10, 20, 25 units of steel and 24, 12, 30, units of aluminum. How many of each type of bicycle should be made in order to maximize profit if the company makes 2 dollars per one speed, 4 dollars per three speed, and 10 dollars per ten-speed. What is the maximum possible profit.

Company Aluminum = 62,160
Company Steel = 50,075
One-Speed Bicycle = 2 dollars, 10 Steel, 24 Aluminum.
Three-speed Bicycle = 4 dollars, 20 Steel, 12 Aluminum.
Ten-speed Bicycle = 10 dollars, 25 Steel, 30 Aluminum.

I would like to know how many of each type must be made to maximize profits, and what the maxiumum profit is.

Best Answer

Just to complement Ross' answer, I present the LPP formulation:

Let $x,y,z$ be the total number of one, three and ten speed bicycles manufactured respectively. \begin{align} \max_{x,y,z}\quad &2x+4y+10z\\ 10x+20y+25z&\leq 50075\\ 24x+12y+30z&\leq 62160\\ x,y,z &\geq 0 \end{align}


You can solve this using the Simplex Method.

If you aren't interested in the solution methodology and just want the answer, many commercial packages have the ability to solve such problems.

For instance, you can solve this in MATLAB using the following commands:

c = [-2 -4 -10]
A = [10 20 25; 24 12 30]
b = [50075;62160]
linprog(c,A,b,[],[],[0;0;0])

which gives you the same answer as the one Ross described.