I have got such an optimization problem:
min a * x1^2 + b * x2^2 + c*x3^2 + d * x1*x2 + e * x1*x3 + f * x2*x3
s.t.
x1 + x2 + x3 + x4 = 1
x1, x2, x3, x4 >= 0
where a,b,c,d,e,f are given double type numbers
Could you help me to solve it using a Java library (for example JOptimizer)? I have been trying to find something proper recently, but I didn't manage..
Take a look at the first example shown at http://www.joptimizer.com/quadraticProgramming.html.
Your P matrix is:
And the following is almost the same as in the example. PS: in order to have a convex problem the P matrix must be positive, that is: