Is my LP model correct?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
A Digital Image Printing (DIP) company makes two types of printers: industrial and home printers. The company makes P400 profit from each industrial and a P200 profit from each piece of home printer. The company has a contract to provide a store with exactly 30 printers per month. A separate industrial company supply DIP with at least 80 printer heads per month. DIP must purchase at least this amount but can order more. Each industrial printer requires 2 printer heads; each piece of home printer requires 8 printer heads. From past performance, the shop owners know they cannot make more than 20 industrial printers per month. They want to know the number of printers of each type to produce in order to maximize profit.
linear-programming operations-research
add a comment |Â
up vote
1
down vote
favorite
A Digital Image Printing (DIP) company makes two types of printers: industrial and home printers. The company makes P400 profit from each industrial and a P200 profit from each piece of home printer. The company has a contract to provide a store with exactly 30 printers per month. A separate industrial company supply DIP with at least 80 printer heads per month. DIP must purchase at least this amount but can order more. Each industrial printer requires 2 printer heads; each piece of home printer requires 8 printer heads. From past performance, the shop owners know they cannot make more than 20 industrial printers per month. They want to know the number of printers of each type to produce in order to maximize profit.
linear-programming operations-research
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
A Digital Image Printing (DIP) company makes two types of printers: industrial and home printers. The company makes P400 profit from each industrial and a P200 profit from each piece of home printer. The company has a contract to provide a store with exactly 30 printers per month. A separate industrial company supply DIP with at least 80 printer heads per month. DIP must purchase at least this amount but can order more. Each industrial printer requires 2 printer heads; each piece of home printer requires 8 printer heads. From past performance, the shop owners know they cannot make more than 20 industrial printers per month. They want to know the number of printers of each type to produce in order to maximize profit.
linear-programming operations-research
A Digital Image Printing (DIP) company makes two types of printers: industrial and home printers. The company makes P400 profit from each industrial and a P200 profit from each piece of home printer. The company has a contract to provide a store with exactly 30 printers per month. A separate industrial company supply DIP with at least 80 printer heads per month. DIP must purchase at least this amount but can order more. Each industrial printer requires 2 printer heads; each piece of home printer requires 8 printer heads. From past performance, the shop owners know they cannot make more than 20 industrial printers per month. They want to know the number of printers of each type to produce in order to maximize profit.
linear-programming operations-research
edited Jul 16 at 8:00
Rodrigo de Azevedo
12.5k41751
12.5k41751
asked Jul 16 at 6:09
Manuel Garcia
61
61
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47
add a comment |Â
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
I have almost the same constraints except the following
A separate industrial company supply DIP with at least 80 printer
heads per month. DIP must purchase at least this amount but can order
more. Each industrial printer requires 2 printer heads; each piece of
home printer requires 8 printer heads
Since it is "at least" the constraint is $2x+8ygeq 80$.
There are several methods to solve such problems.
$1)$ You are lucky. This problem has only 2 variables. Thus it can be solved graphically. See here how it works. In this case the optimal solution is on the line $y=30-x$
$2)$ You can use a computer program. I have used the web page here. The formulation is
Maximize p = 400x+200y subject to
x+y=30
2x + 8y >= 80
x<= 20
Just mark, copy and paste it.
$3)$ It can be solved with the simplex method by yourself. If you want to apply this method and you have questions about it, feel free to ask.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I have almost the same constraints except the following
A separate industrial company supply DIP with at least 80 printer
heads per month. DIP must purchase at least this amount but can order
more. Each industrial printer requires 2 printer heads; each piece of
home printer requires 8 printer heads
Since it is "at least" the constraint is $2x+8ygeq 80$.
There are several methods to solve such problems.
$1)$ You are lucky. This problem has only 2 variables. Thus it can be solved graphically. See here how it works. In this case the optimal solution is on the line $y=30-x$
$2)$ You can use a computer program. I have used the web page here. The formulation is
Maximize p = 400x+200y subject to
x+y=30
2x + 8y >= 80
x<= 20
Just mark, copy and paste it.
$3)$ It can be solved with the simplex method by yourself. If you want to apply this method and you have questions about it, feel free to ask.
add a comment |Â
up vote
0
down vote
I have almost the same constraints except the following
A separate industrial company supply DIP with at least 80 printer
heads per month. DIP must purchase at least this amount but can order
more. Each industrial printer requires 2 printer heads; each piece of
home printer requires 8 printer heads
Since it is "at least" the constraint is $2x+8ygeq 80$.
There are several methods to solve such problems.
$1)$ You are lucky. This problem has only 2 variables. Thus it can be solved graphically. See here how it works. In this case the optimal solution is on the line $y=30-x$
$2)$ You can use a computer program. I have used the web page here. The formulation is
Maximize p = 400x+200y subject to
x+y=30
2x + 8y >= 80
x<= 20
Just mark, copy and paste it.
$3)$ It can be solved with the simplex method by yourself. If you want to apply this method and you have questions about it, feel free to ask.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
I have almost the same constraints except the following
A separate industrial company supply DIP with at least 80 printer
heads per month. DIP must purchase at least this amount but can order
more. Each industrial printer requires 2 printer heads; each piece of
home printer requires 8 printer heads
Since it is "at least" the constraint is $2x+8ygeq 80$.
There are several methods to solve such problems.
$1)$ You are lucky. This problem has only 2 variables. Thus it can be solved graphically. See here how it works. In this case the optimal solution is on the line $y=30-x$
$2)$ You can use a computer program. I have used the web page here. The formulation is
Maximize p = 400x+200y subject to
x+y=30
2x + 8y >= 80
x<= 20
Just mark, copy and paste it.
$3)$ It can be solved with the simplex method by yourself. If you want to apply this method and you have questions about it, feel free to ask.
I have almost the same constraints except the following
A separate industrial company supply DIP with at least 80 printer
heads per month. DIP must purchase at least this amount but can order
more. Each industrial printer requires 2 printer heads; each piece of
home printer requires 8 printer heads
Since it is "at least" the constraint is $2x+8ygeq 80$.
There are several methods to solve such problems.
$1)$ You are lucky. This problem has only 2 variables. Thus it can be solved graphically. See here how it works. In this case the optimal solution is on the line $y=30-x$
$2)$ You can use a computer program. I have used the web page here. The formulation is
Maximize p = 400x+200y subject to
x+y=30
2x + 8y >= 80
x<= 20
Just mark, copy and paste it.
$3)$ It can be solved with the simplex method by yourself. If you want to apply this method and you have questions about it, feel free to ask.
answered Jul 16 at 14:14


callculus
16.4k31427
16.4k31427
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2853139%2fis-my-lp-model-correct%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
the question does not say how unused printer heads affect the profit
– LinAlg
Jul 16 at 14:47