How can this linear problem be infeasible? The Next CEO of Stack OverflowPrimal and dual solution to linear programmingQuestions about weak duality theoremHow the dual LP solves the primal LPConstruct a linear programming problem for which both the primal and the dual problem has no feasible solutionHow do you determine which Simplex method you need to use when solving a linear programming problem?What is the significance of an infeasible solution to a network flow problem?Feasibility and boundedness of non-linear programmingLinear programming optimal solutionMultiple optimal solutions for a linear programming problemLinear programming: how to determine if the basic solution is feasible or infeasible?

Is it okay to store user locations?

Should I tutor a student who I know has cheated on their homework?

Why is there a PLL in CPU?

How to safely derail a train during transit?

How can I quit an app using Terminal?

How can I open an app using Terminal?

What is the point of a new vote on May's deal when the indicative votes suggest she will not win?

Implement the Thanos sorting algorithm

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables

How to use tikz in fbox?

% symbol leads to superlong (forever?) compilations

Is a stroke of luck acceptable after a series of unfavorable events?

If the heap is initialized for security, then why is the stack uninitialized?

How do I solve this limit?

How to be diplomatic in refusing to write code that breaches the privacy of our users

How do spells that require an ability check vs. the caster's spell save DC work?

How to count occurrences of text in a file?

How to start emacs in "nothing" mode (`fundamental-mode`)

What is the difference between "behavior" and "behaviour"?

Fastest way to shutdown Ubuntu Mate 18.10

How to write the block matrix in LaTex?

How to make a software documentation "officially" citable?

How do I construct this japanese bowl?



How can this linear problem be infeasible?



The Next CEO of Stack OverflowPrimal and dual solution to linear programmingQuestions about weak duality theoremHow the dual LP solves the primal LPConstruct a linear programming problem for which both the primal and the dual problem has no feasible solutionHow do you determine which Simplex method you need to use when solving a linear programming problem?What is the significance of an infeasible solution to a network flow problem?Feasibility and boundedness of non-linear programmingLinear programming optimal solutionMultiple optimal solutions for a linear programming problemLinear programming: how to determine if the basic solution is feasible or infeasible?










0












$begingroup$


I have the following linear problem which is primal:
enter image description here



I have converted this problem to its dual and tried to solve using the lpSolveAPI in R programming language. However, the solve function returns a 2, which means the problem is infeasible. It is imposible, because the primal problem has an optimal solution, so the dual must have an optimal solution too.



Here is the code that I have written to solve the dual problem:



#Vector de costes
c2<-c(11,10)

#Matriz de restricciones
A2<-matrix(nrow=3,ncol=2)
A2[1,] <- c(1,2)
A2[2,] <- c(2,3)
A2[3,] <- c(3,2)

#Lados derechos
b2<-c(-2,-3,-4)

#Cotas inferiores y superiores
cotasinf<-c(Inf,Inf)
cotassup<-c(0,0)

#Tipos de restricciones
tipores2<-c("<=","<=","<=")

#Se crea problema de programacion lineal
#3 restricciones y 2 variables
ejercicio.2<-make.lp(3,2)

#######Se definen los parametros##########
#Matriz de restricciones
for (i in 1:nrow(A2)) set.row(ejercicio.2,i,A2[i,])

#Funcion objetivo
set.objfn(ejercicio.2,c2)

#Lados derechos
set.rhs(ejercicio.2,b2)

#Tipos de restricciones
set.constr.type(ejercicio.2,tipores2)

#Cotas inferiores y superiores de cada variable
set.bounds(ejercicio.2, lower = cotasinf)
set.bounds(ejercicio.2, upper = cotassup)

#Nombres de variables y restricciones
restrics2 <- c("restriccion.1", "restriccion.2", "restriccion.3")
vars2 <- c("x1", "x2", "x3", "x4")
dimnames(ejercicio.2) <- list(restrics2, vars2)

#Cambiando a problema de minimizacion
lp.control(ejercicio.2,sense="max")

#Se muestra el problema ya cargado
ejercicio.2

#Se resuelve el problema
solve(ejercicio.2)

#Se obtiene el valor de la funcion objetivo en el optimo
get.objective(ejercicio.2)









share|cite|improve this question











$endgroup$











  • $begingroup$
    Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
    $endgroup$
    – Michal Adamaszek
    Mar 18 at 11:55










  • $begingroup$
    Write the primal program and try $textget.dual.solution(ejercicio.2)$
    $endgroup$
    – callculus
    Mar 18 at 15:36















0












$begingroup$


I have the following linear problem which is primal:
enter image description here



I have converted this problem to its dual and tried to solve using the lpSolveAPI in R programming language. However, the solve function returns a 2, which means the problem is infeasible. It is imposible, because the primal problem has an optimal solution, so the dual must have an optimal solution too.



Here is the code that I have written to solve the dual problem:



#Vector de costes
c2<-c(11,10)

#Matriz de restricciones
A2<-matrix(nrow=3,ncol=2)
A2[1,] <- c(1,2)
A2[2,] <- c(2,3)
A2[3,] <- c(3,2)

#Lados derechos
b2<-c(-2,-3,-4)

#Cotas inferiores y superiores
cotasinf<-c(Inf,Inf)
cotassup<-c(0,0)

#Tipos de restricciones
tipores2<-c("<=","<=","<=")

#Se crea problema de programacion lineal
#3 restricciones y 2 variables
ejercicio.2<-make.lp(3,2)

#######Se definen los parametros##########
#Matriz de restricciones
for (i in 1:nrow(A2)) set.row(ejercicio.2,i,A2[i,])

#Funcion objetivo
set.objfn(ejercicio.2,c2)

#Lados derechos
set.rhs(ejercicio.2,b2)

#Tipos de restricciones
set.constr.type(ejercicio.2,tipores2)

#Cotas inferiores y superiores de cada variable
set.bounds(ejercicio.2, lower = cotasinf)
set.bounds(ejercicio.2, upper = cotassup)

#Nombres de variables y restricciones
restrics2 <- c("restriccion.1", "restriccion.2", "restriccion.3")
vars2 <- c("x1", "x2", "x3", "x4")
dimnames(ejercicio.2) <- list(restrics2, vars2)

#Cambiando a problema de minimizacion
lp.control(ejercicio.2,sense="max")

#Se muestra el problema ya cargado
ejercicio.2

#Se resuelve el problema
solve(ejercicio.2)

#Se obtiene el valor de la funcion objetivo en el optimo
get.objective(ejercicio.2)









share|cite|improve this question











$endgroup$











  • $begingroup$
    Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
    $endgroup$
    – Michal Adamaszek
    Mar 18 at 11:55










  • $begingroup$
    Write the primal program and try $textget.dual.solution(ejercicio.2)$
    $endgroup$
    – callculus
    Mar 18 at 15:36













0












0








0


0



$begingroup$


I have the following linear problem which is primal:
enter image description here



I have converted this problem to its dual and tried to solve using the lpSolveAPI in R programming language. However, the solve function returns a 2, which means the problem is infeasible. It is imposible, because the primal problem has an optimal solution, so the dual must have an optimal solution too.



Here is the code that I have written to solve the dual problem:



#Vector de costes
c2<-c(11,10)

#Matriz de restricciones
A2<-matrix(nrow=3,ncol=2)
A2[1,] <- c(1,2)
A2[2,] <- c(2,3)
A2[3,] <- c(3,2)

#Lados derechos
b2<-c(-2,-3,-4)

#Cotas inferiores y superiores
cotasinf<-c(Inf,Inf)
cotassup<-c(0,0)

#Tipos de restricciones
tipores2<-c("<=","<=","<=")

#Se crea problema de programacion lineal
#3 restricciones y 2 variables
ejercicio.2<-make.lp(3,2)

#######Se definen los parametros##########
#Matriz de restricciones
for (i in 1:nrow(A2)) set.row(ejercicio.2,i,A2[i,])

#Funcion objetivo
set.objfn(ejercicio.2,c2)

#Lados derechos
set.rhs(ejercicio.2,b2)

#Tipos de restricciones
set.constr.type(ejercicio.2,tipores2)

#Cotas inferiores y superiores de cada variable
set.bounds(ejercicio.2, lower = cotasinf)
set.bounds(ejercicio.2, upper = cotassup)

#Nombres de variables y restricciones
restrics2 <- c("restriccion.1", "restriccion.2", "restriccion.3")
vars2 <- c("x1", "x2", "x3", "x4")
dimnames(ejercicio.2) <- list(restrics2, vars2)

#Cambiando a problema de minimizacion
lp.control(ejercicio.2,sense="max")

#Se muestra el problema ya cargado
ejercicio.2

#Se resuelve el problema
solve(ejercicio.2)

#Se obtiene el valor de la funcion objetivo en el optimo
get.objective(ejercicio.2)









share|cite|improve this question











$endgroup$




I have the following linear problem which is primal:
enter image description here



I have converted this problem to its dual and tried to solve using the lpSolveAPI in R programming language. However, the solve function returns a 2, which means the problem is infeasible. It is imposible, because the primal problem has an optimal solution, so the dual must have an optimal solution too.



Here is the code that I have written to solve the dual problem:



#Vector de costes
c2<-c(11,10)

#Matriz de restricciones
A2<-matrix(nrow=3,ncol=2)
A2[1,] <- c(1,2)
A2[2,] <- c(2,3)
A2[3,] <- c(3,2)

#Lados derechos
b2<-c(-2,-3,-4)

#Cotas inferiores y superiores
cotasinf<-c(Inf,Inf)
cotassup<-c(0,0)

#Tipos de restricciones
tipores2<-c("<=","<=","<=")

#Se crea problema de programacion lineal
#3 restricciones y 2 variables
ejercicio.2<-make.lp(3,2)

#######Se definen los parametros##########
#Matriz de restricciones
for (i in 1:nrow(A2)) set.row(ejercicio.2,i,A2[i,])

#Funcion objetivo
set.objfn(ejercicio.2,c2)

#Lados derechos
set.rhs(ejercicio.2,b2)

#Tipos de restricciones
set.constr.type(ejercicio.2,tipores2)

#Cotas inferiores y superiores de cada variable
set.bounds(ejercicio.2, lower = cotasinf)
set.bounds(ejercicio.2, upper = cotassup)

#Nombres de variables y restricciones
restrics2 <- c("restriccion.1", "restriccion.2", "restriccion.3")
vars2 <- c("x1", "x2", "x3", "x4")
dimnames(ejercicio.2) <- list(restrics2, vars2)

#Cambiando a problema de minimizacion
lp.control(ejercicio.2,sense="max")

#Se muestra el problema ya cargado
ejercicio.2

#Se resuelve el problema
solve(ejercicio.2)

#Se obtiene el valor de la funcion objetivo en el optimo
get.objective(ejercicio.2)






linear-programming






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Mar 18 at 11:33









YuiTo Cheng

2,1512937




2,1512937










asked Mar 18 at 10:53









Sergio ReySergio Rey

1




1











  • $begingroup$
    Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
    $endgroup$
    – Michal Adamaszek
    Mar 18 at 11:55










  • $begingroup$
    Write the primal program and try $textget.dual.solution(ejercicio.2)$
    $endgroup$
    – callculus
    Mar 18 at 15:36
















  • $begingroup$
    Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
    $endgroup$
    – Michal Adamaszek
    Mar 18 at 11:55










  • $begingroup$
    Write the primal program and try $textget.dual.solution(ejercicio.2)$
    $endgroup$
    – callculus
    Mar 18 at 15:36















$begingroup$
Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
$endgroup$
– Michal Adamaszek
Mar 18 at 11:55




$begingroup$
Perhaps your dual is wrong. You have more chance of getting an answer if you write it as equations and not in R.
$endgroup$
– Michal Adamaszek
Mar 18 at 11:55












$begingroup$
Write the primal program and try $textget.dual.solution(ejercicio.2)$
$endgroup$
– callculus
Mar 18 at 15:36




$begingroup$
Write the primal program and try $textget.dual.solution(ejercicio.2)$
$endgroup$
– callculus
Mar 18 at 15:36










0






active

oldest

votes












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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3152642%2fhow-can-this-linear-problem-be-infeasible%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3152642%2fhow-can-this-linear-problem-be-infeasible%23new-answer', 'question_page');

);

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







Popular posts from this blog

Moe incest case Sentencing See also References Navigation menu"'Australian Josef Fritzl' fathered four children by daughter""Small town recoils in horror at 'Australian Fritzl' incest case""Victorian rape allegations echo Fritzl case - Just In (Australian Broadcasting Corporation)""Incest father jailed for 22 years""'Australian Fritzl' sentenced to 22 years in prison for abusing daughter for three decades""RSJ v The Queen"

John Burke, 9th Earl of Clanricarde References Navigation menuA General and heraldic dictionary of the peerage and baronetage of the British EmpireLeigh Rayment's Peerage Pages

Football at the 1986 Brunei Merdeka Games Contents Teams Group stage Knockout stage References Navigation menu"Brunei Merdeka Games 1986".