High School

Thank you for visiting The RMC Corporation blends three raw materials to produce two products a fuel additive and a solvent base Each ton of fuel additive is a. This page is designed to guide you through key points and clear explanations related to the topic at hand. We aim to make your learning experience smooth, insightful, and informative. Dive in and discover the answers you're looking for!

The RMC Corporation blends three raw materials to produce two products: a fuel additive and a solvent base. Each ton of fuel additive is a mixture of \(\frac{2}{5}\) ton of material 1 and \(\frac{3}{5}\) ton of material 3. A ton of solvent base is a mixture of \(\frac{1}{2}\) ton of material 1, \(\frac{1}{5}\) ton of material 2, and \(\frac{3}{10}\) ton of material 3.

RMC’s production is constrained by the limited availability of the three raw materials. For the current production period, RMC has the following quantities of each raw material:
- Material 1: 20 tons
- Material 2: 5 tons
- Material 3: 21 tons

Management wants to achieve the following P1 priority level goals:
- **Goal 1:** Produce at least 30 tons of fuel additive.
- **Goal 2:** Produce at least 15 tons of solvent base.

Assume there are no other goals. Is it possible for management to achieve both P1 level goals given the constraints on the amounts of each material available?

**Goal Programming Model:**

Let:
- \(x_1\) = the number of tons of fuel additive produced
- \(x_2\) = the number of tons of solvent base produced
- \(d_1^+\) = the amount by which the number of tons of fuel additive produced exceeds the target value of 30 tons
- \(d_1^-\) = the amount by which the number of tons of fuel additive produced is less than the target of 30 tons
- \(d_2^+\) = the amount by which the number of tons of solvent base produced exceeds the target value of 15 tons
- \(d_2^-\) = the amount by which the number of tons of solvent base is less than the target value of 15 tons

**Constraints:**
1. Material 1: \(\frac{2}{5}x_1 + \frac{1}{2}x_2 \leq 20\)
2. Material 2: \(\frac{1}{5}x_2 \leq 5\)
3. Material 3: \(\frac{3}{5}x_1 + \frac{3}{10}x_2 \leq 21\)
4. Fuel Additive Goal: \(x_1 + d_1^- - d_1^+ = 30\)
5. Solvent Base Goal: \(x_2 + d_2^- - d_2^+ = 15\)

Determine the optimal product mix while achieving both P1 priority level goals, considering that both goals are equally important to management.

Answer :

Answer:

Goal 1: Produce at least 30 tons of fuel additive.

Goal 2: Produce at least 15 tons of solvent base.

Explanation:

Thank you for reading the article The RMC Corporation blends three raw materials to produce two products a fuel additive and a solvent base Each ton of fuel additive is a. We hope the information provided is useful and helps you understand this topic better. Feel free to explore more helpful content on our website!

Rewritten by : Jeany

To formulate the goal programming model, we need to set up the objective function and the constraints based on the given information. Let's define the decision variables and the deviation variables:

Decision variables:

Let x1 = the number of tons of fuel additive produced

Let x2 = the number of tons of solvent base produced

Deviation variables (amount by which the goals are exceeded or not met):

Let d1+ = the amount by which the number of tons of fuel additive produced exceeds the target value of 30 tons

Let d1- = the amount by which the number of tons of fuel additive produced is less than the target of 30 tons

Let d2+ = the amount by which the number of tons of solvent base produced exceeds the target value of 15 tons

Let d2- = the amount by which the number of tons of solvent base is less than the target value of 15 tons

Objective function:

Since both goals are equally important, we want to minimize the total deviations from the target values. The objective function is the sum of these deviations:

Minimize: Z = d1+ + d1- + d2+ + d2-

Constraints:

Material 1 constraint: The total material 1 used in producing fuel additive and solvent base cannot exceed the available 20 tons of material 1.

2/5 * x1 + 1/2 * x2 <= 20

Material 2 constraint: The total material 2 used in producing solvent base cannot exceed the available 5 tons of material 2.

1/5 * x2 <= 5

Material 3 constraint: The total material 3 used in producing fuel additive and solvent base cannot exceed the available 21 tons of material 3.

3/5 * x1 + 3/10 * x2 <= 21

Fuel additive production goal constraint: The fuel additive production should be at least 30 tons.

x1 + d1+ - d1- = 30

Solvent base production goal constraint: The solvent base production should be at least 15 tons.

x2 + d2+ - d2- = 15

Non-negativity constraints:

x1, x2, d1+, d1-, d2+, d2- >= 0

Now we have the complete goal programming model. The objective is to minimize the total deviations (d1+, d1-, d2+, d2-) from the target values while satisfying the material constraints and the production goals. The model can be solved using standard optimization techniques such as linear programming to find the optimal production mix.

To know more about Corporation here

https://brainly.com/question/1918077

#SPJ2