Solving linear Programming problem with simplex method.Solving linear programming problem with global opt methodLinear Programming - Simplex MethodSimplex Method issues solving this problemLP Constraint ProblemLinear programming problem using the simplex algorithm, dual problem…solving minimum linear programming with simplex methodHelp solving linear programming problem with simplex methodSolving linear programming with bounds by simplex algorithmWhy is my linear programming model wrong?Linear Programming Simplex Method: How to pick leaving variable
What is the offset in a seaplane's hull?
how to create a data type and make it available in all Databases?
My colleague's body is amazing
Prevent a directory in /tmp from being deleted
How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Can I interfere when another PC is about to be attacked?
The use of multiple foreign keys on same column in SQL Server
How do you conduct xenoanthropology after first contact?
cryptic clue: mammal sounds like relative consumer (8)
If Manufacturer spice model and Datasheet give different values which should I use?
Why do we use polarized capacitor?
Why was the small council so happy for Tyrion to become the Master of Coin?
Circuitry of TV splitters
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Calculus Optimization - Point on graph closest to given point
Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?
"which" command doesn't work / path of Safari?
What makes Graph invariants so useful/important?
What does "enim et" mean?
Why is the design of haulage companies so “special”?
Email Account under attack (really) - anything I can do?
Solving linear Programming problem with simplex method.
Solving linear programming problem with global opt methodLinear Programming - Simplex MethodSimplex Method issues solving this problemLP Constraint ProblemLinear programming problem using the simplex algorithm, dual problem…solving minimum linear programming with simplex methodHelp solving linear programming problem with simplex methodSolving linear programming with bounds by simplex algorithmWhy is my linear programming model wrong?Linear Programming Simplex Method: How to pick leaving variable
$begingroup$
I have tried this question but can't come up with a maximization answer. I am not certain where I am wrong but I think my equations have an issue, you can't take look at them below the question.
The questions states,
An investor has to invest in an economy and has three options to invest in: banking, insurance and manufacturing. The return on investment is 20%, 25% and 15% respectively. The president said that he must invest the investment in banking should not exceed twice the total investment in insurance and manufacturing by more than 3 million dollars. At the same time not less than 30% of the investment should be in manufacturing. If the total money available to the investor is 18 million dollars.
a) Formulate his problem as an LP problem
b) Use the simplex table to calculate the maximum profit he can make.
NB:
Hint: Let the money, in million dollars invested in banking be $x_1$ , in insurance be $x_2 $ and in manufacturing be $x_3$ .
In my solution, i managed to come up with my objective function as
$x_1 + x_2 + x_3 = 18$
and with the constraints I came up with;
(x1 <= x2)....eqn1-(president said that he must invest the investment in banking should not exceed twice the total investment in insurance)
(x1 + 3 <= x3)....eqn2-(manufacturing by more than 3 million dollars)
(x3 >= (30% * 18million))...eqn3-(At the same time not less than 30% of the investment should be in manufacturing.)
From the equations i started iterating and stuff isen't just adding up somewhere. SOMEONE HELP.
linear-programming
$endgroup$
add a comment |
$begingroup$
I have tried this question but can't come up with a maximization answer. I am not certain where I am wrong but I think my equations have an issue, you can't take look at them below the question.
The questions states,
An investor has to invest in an economy and has three options to invest in: banking, insurance and manufacturing. The return on investment is 20%, 25% and 15% respectively. The president said that he must invest the investment in banking should not exceed twice the total investment in insurance and manufacturing by more than 3 million dollars. At the same time not less than 30% of the investment should be in manufacturing. If the total money available to the investor is 18 million dollars.
a) Formulate his problem as an LP problem
b) Use the simplex table to calculate the maximum profit he can make.
NB:
Hint: Let the money, in million dollars invested in banking be $x_1$ , in insurance be $x_2 $ and in manufacturing be $x_3$ .
In my solution, i managed to come up with my objective function as
$x_1 + x_2 + x_3 = 18$
and with the constraints I came up with;
(x1 <= x2)....eqn1-(president said that he must invest the investment in banking should not exceed twice the total investment in insurance)
(x1 + 3 <= x3)....eqn2-(manufacturing by more than 3 million dollars)
(x3 >= (30% * 18million))...eqn3-(At the same time not less than 30% of the investment should be in manufacturing.)
From the equations i started iterating and stuff isen't just adding up somewhere. SOMEONE HELP.
linear-programming
$endgroup$
add a comment |
$begingroup$
I have tried this question but can't come up with a maximization answer. I am not certain where I am wrong but I think my equations have an issue, you can't take look at them below the question.
The questions states,
An investor has to invest in an economy and has three options to invest in: banking, insurance and manufacturing. The return on investment is 20%, 25% and 15% respectively. The president said that he must invest the investment in banking should not exceed twice the total investment in insurance and manufacturing by more than 3 million dollars. At the same time not less than 30% of the investment should be in manufacturing. If the total money available to the investor is 18 million dollars.
a) Formulate his problem as an LP problem
b) Use the simplex table to calculate the maximum profit he can make.
NB:
Hint: Let the money, in million dollars invested in banking be $x_1$ , in insurance be $x_2 $ and in manufacturing be $x_3$ .
In my solution, i managed to come up with my objective function as
$x_1 + x_2 + x_3 = 18$
and with the constraints I came up with;
(x1 <= x2)....eqn1-(president said that he must invest the investment in banking should not exceed twice the total investment in insurance)
(x1 + 3 <= x3)....eqn2-(manufacturing by more than 3 million dollars)
(x3 >= (30% * 18million))...eqn3-(At the same time not less than 30% of the investment should be in manufacturing.)
From the equations i started iterating and stuff isen't just adding up somewhere. SOMEONE HELP.
linear-programming
$endgroup$
I have tried this question but can't come up with a maximization answer. I am not certain where I am wrong but I think my equations have an issue, you can't take look at them below the question.
The questions states,
An investor has to invest in an economy and has three options to invest in: banking, insurance and manufacturing. The return on investment is 20%, 25% and 15% respectively. The president said that he must invest the investment in banking should not exceed twice the total investment in insurance and manufacturing by more than 3 million dollars. At the same time not less than 30% of the investment should be in manufacturing. If the total money available to the investor is 18 million dollars.
a) Formulate his problem as an LP problem
b) Use the simplex table to calculate the maximum profit he can make.
NB:
Hint: Let the money, in million dollars invested in banking be $x_1$ , in insurance be $x_2 $ and in manufacturing be $x_3$ .
In my solution, i managed to come up with my objective function as
$x_1 + x_2 + x_3 = 18$
and with the constraints I came up with;
(x1 <= x2)....eqn1-(president said that he must invest the investment in banking should not exceed twice the total investment in insurance)
(x1 + 3 <= x3)....eqn2-(manufacturing by more than 3 million dollars)
(x3 >= (30% * 18million))...eqn3-(At the same time not less than 30% of the investment should be in manufacturing.)
From the equations i started iterating and stuff isen't just adding up somewhere. SOMEONE HELP.
linear-programming
linear-programming
edited Mar 22 at 11:12
dmtri
1,7712521
1,7712521
asked Mar 22 at 10:41
andy lacronandy lacron
61
61
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
The objective function you are using is incorrect. You want to maximise the profit, which you can formulate as $0.2x_1 + 0.25x_2 + 0.15x_3$. The equation you are currently using as the objective is actually another constraint.
You should also remember that in order to use the simplex method, you should bring your LP into the standard form.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3157997%2fsolving-linear-programming-problem-with-simplex-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The objective function you are using is incorrect. You want to maximise the profit, which you can formulate as $0.2x_1 + 0.25x_2 + 0.15x_3$. The equation you are currently using as the objective is actually another constraint.
You should also remember that in order to use the simplex method, you should bring your LP into the standard form.
$endgroup$
add a comment |
$begingroup$
The objective function you are using is incorrect. You want to maximise the profit, which you can formulate as $0.2x_1 + 0.25x_2 + 0.15x_3$. The equation you are currently using as the objective is actually another constraint.
You should also remember that in order to use the simplex method, you should bring your LP into the standard form.
$endgroup$
add a comment |
$begingroup$
The objective function you are using is incorrect. You want to maximise the profit, which you can formulate as $0.2x_1 + 0.25x_2 + 0.15x_3$. The equation you are currently using as the objective is actually another constraint.
You should also remember that in order to use the simplex method, you should bring your LP into the standard form.
$endgroup$
The objective function you are using is incorrect. You want to maximise the profit, which you can formulate as $0.2x_1 + 0.25x_2 + 0.15x_3$. The equation you are currently using as the objective is actually another constraint.
You should also remember that in order to use the simplex method, you should bring your LP into the standard form.
edited Mar 22 at 11:29
answered Mar 22 at 11:20
wiluqawiluqa
365
365
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3157997%2fsolving-linear-programming-problem-with-simplex-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown