# Model tp014 var x_1; let x_1 := 2; var x_2; let x_2 := 2; minimize obj: (x_1 - 2)^2 + (x_2 - 1)^2; subject to ci_1: (-1/4)*x_1^2 - x_2^2 + 1 >= 0; subject to ce_1: x_1 - 2*x_2 + 1 = 0; display obj; solve; display obj; display x_1; display x_2; display obj - 1.393464980689302; display x_1 - 0.8228756555322953; display x_2 - 0.9114378277661476;