4. A refinery blends four petroleum components into three grades of gasoline reg
ID: 3605749 • Letter: 4
Question
4. A refinery blends four petroleum components into three grades of gasoline regular, premium, and low-lead. The maximum quantities available of each component and the cost per barrel are shown below: Component Maximum Barrels Available/Day Cost/Barrel ( 5000 2400 4000 1500 4 To ensure that each gasoline grade retains certain essential characteristics, the refinery has put limits on the percentage of the components in each blend. The limits as well as the selling prices for the various grades are as follows: Component Specifications Not less than 40% of 1 Not more than 20% of 2 Not more than 30% of 3 Not less than 40% of 3 Not more than 50% of 2 Not less than 10% of 1 Selling Price/Barrel ($) 12 Grade Regular Premiumm Low-Lead 18 The refinery wants to produce at least 3000 barrels of each grade of gasoline. Management wishes to determine the optimal mix of the four components that will maximize profit. Formulate a linear programming model for this problem, and solve using the computerExplanation / Answer
<head>
<meta charset="UTF-8">
<title>Clock</title>
<link rel="stylesheet" href="clock.css">
<script src="library_namespace.js"></script>
<script src="library_utility.js"></script>
<script src="library_clock.js"></script>
<script src="library_stopwatch.js"></script>
<script src="clock.js"></script>
</head>
<body>
<main>
<h1>Digital clock with stopwatch</h1>
<fieldset>
<legend>Clock</legend>
<span id="hours"> </span>:
<span id="minutes"> </span>:
<span id="seconds"> </span>
<span id="ampm"> </span>
<span id="date"> </span>
</fieldset>
<fieldset>
<legend>Stop Watch</legend>
<input type="button" id="start" value="Start">
<input type="button" id="stop" value="Stop">
<input type="button" id="reset" value="Reset">
<span id="s_minutes">00</span>:
<span id="s_seconds">00</span>:
<span id="s_ms">000</span>
</fieldset>
</main>
</body>
</html>
clock.css:
body {
font-family: Arial, Helvetica, sans-serif;
background-color: white;
margin: 0 auto;
width: 450px;
border: 3px solid blue;
padding: 0 2em 1em;
}
h1 {
color: blue;
}
label {
float: left;
width: 11em;
text-align: right;
padding-bottom: .5em;
}
input {
margin-right: 1em;
margin-bottom: .5em;
}
fieldset {
margin-bottom: 1em;
}
#date {
margin-left: 2em;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.