.
Unfortunately, the solution by @Theo contains mistakes.
Some mistakes are technical (like typos).
But there are conceptual mistakes, too.
So, I came to put here the correct solution.
Let x = # of girl dolls;
y = # of boy dolls.
Your objective function is R(x,y) = 9x + 9.5y which you want to minimize.
your constraint functions are:
12x + 14y <= 100000 (plastic constraint) <<<---=== I edited this line
5x <= 30000 (silk constraint)
x >= 2y ("Kids will buy at least twice as many girl dolls as boys.") <<<---=== missed constrain
x,y >= 0 (can't be negative)
Region of feasibility is shown in the plot below.
It is the quadrilateral in Quadrant I below the blue line, below the red line and to the left from the vertical green line.
// To make the numbers on the coordinate axes better visible, I showed the values along coordinate axes in thousands dolls.
Plots y = (red), x = 6 (green) and (blue)
The corner points of this region are where the maximum revenue will be.
You will evaluate the objective function at these corner points to determine the corner point that provides the most revenue.
You also need to confirm that all constraints are satisfied as the corner point with the maximum revenue.
The corner point with the maximum revenue is at (6000,2000)
The revenue at this corner point was 73,000, which was higher than at any of the other corner points.
The plastic consumed was 100,000 and the nylon consumed was 30,000, all under the constraint limits of <= 100,000 and <= 30,000.
The cost function at the corner point was 9 * 6,000 + 9.5 * 2000 = 73,000
The plastic constraint was 12 * 6000 + 14 * 2000 = 100,000
The nylon constraint was 5 * 6000 + 0 * 2000 = 30,000