Question :
A company produces three kinds of gas ( Kind $1$, $2$ and $3$ ). Each kind of gas is made from combination of three kinds of petroleums ( Kind $1$, $2$ and $3$).
- The price of one barrel of the first kind of petroleum, the second kind and the third kind is $45$, $35$ and $25$ dollars, relatively.
- The proceeds from the sale of the first kind of gas, the second kind and the third kind is $70$,$60$ and $50$ dollars relatively.
- The company can afford buying at most $5000$ barrels of each kind of petroleum in a day.
- Each barrel of the first kind of petroleum, the second kind and the third kind contains $12$,$6$ and $8$ unit of Octane, relatively.
- Each barrel of the first kind of petroleum, the second kind and the third kind contains $0.005$,$0.02$ and $0.03$ unit of Sulfur, relatively.
- The ratio of Octane should be at least $10$,$8$ and $6$ in the first, second and third kind of gas.
- The ratio of Sulfur should be at most $0.01$, $0.02$ and $0.01$ in the first, second and third kind of gas.
- Converting a barrel of petroleum to a barrel of gas costs $4$ dollars.
- The company can afford producing at most $14000$ barrels of gas in a day.
- The customers need $3000$, $2000$ and $1000$ barrels of gas in day and the company should fulfill their needs.
- The company can advertise to sell more barrels of gas in a day. Each dollar spent on advertisement of a kind of gas, increases the need of that kind of gas to $10$ more barrels.
The company should decide on combining the kinds of petroleum to maximize the benefit of a day.
Provide a linear programming model for this problem and analyze the results.
My answer :
Decision variables :
$x_{ij}=$ The number of barrels of petroleum of kind $i$ used to produce gas of kind $j$
$y_j=$The money (dollars) spent on advertising the gas of kind $j$
I wrote all of the constraints and the $LP$'s solution is like this :
$x_{11}=2088/889 \space\space, x_{12}=2111/111 \space\space, x_{13}=800$
$x_{21}=777/778\space\space , x_{22}=4222/222 \space\space, x_{23}=0$
$x_{31}=133/333\space\space , x_{32}=3166/667 \space\space, x_{33}=200$
$y_1=0 \space\space, y_2=750 \space\space, y_3=0$
It seems that everything is correct ( I double-checked the answer with a software ). But i can't analyze two things!
(i) Why advertising on just the second kind of gas? Specially when the first kind costs more?
(ii) The amount of gas produced ( of all kinds ) is $13500$ barrels. Why not producing the maximum amount that the company can afford? ( Which the question states that is $14000$ barrels? )