Answer :
Final answer:
To formulate this problem as a linear programming (LP) problem, define the variables, objective function, and constraints. Graph the constraints to find the corner points of the feasible region. Evaluate the objective function at the corner points to identify the optimal solution.
Explanation:
To formulate this problem as a linear programming (LP) problem, we need to define the decision variables, objective function, and constraints. Let's use R to solve this problem.
Decision Variables:
Let x be the number of bunches of roses and y be the number of bunches of carnations.
Objective Function:
Maximize the profit contribution: Z = 6x + 8y.
Constraints:
- The greenhouse can't exceed the available square footage: 4x + 5y <= 10000.
- There is a limited amount of fertilizer: 5x + 2y <= 5000.
- There is a sales commitment for roses: x >= 500.
- The number of bunches of roses and carnations can't be negative: x, y >= 0.
By graphing these constraints, we can identify the corner points of the feasible region. Using the corner points, we can find the optimal solution by evaluating the objective function.
Corner points of the feasible region:
(500, 0), (500, 1000), (900, 800), (0, 2000), (0, 0).
The optimal solution can be found by evaluating the objective function at each corner point and selecting the values that maximize it. The resulting optimal solution is (900, 800) with a profit contribution of $8,800.
Learn more about Formulating a Linear Programming Problem here:
https://brainly.com/question/32804638
#SPJ11