I need help to find a value for "d" which the expr has the minimum value at that "d" value. Constraints are added to the code
ClearAll[c, x1, y1, x2, y2, d, expr]
c = 5;
expr = -x1*y1*c + x2*y2*c + d*x1*x2;
FindMinimum[{expr,
x2*y2 + 2*c*y2 - d*x1*x2 < 0 &&
-x1*y1 + 2*c*y1 - d*x1*x2 < 0 &&
x1 + x2 == 1 &&
y1 + y2 == 1 &&
x1 > 0 &&
x2 > 0 &&
y1 >= 0 &&
y2 >= 0}, {d}]
The code above doesn't give me any values for "d" and I don't get any errors. I don't know what the problem is with this code.