When is minimum p-norm solution independent of p?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have created three optimization models for the same objective function but different norms-L1, L2, Linf- and subjected to the same constraints as shown below.
‖F_1*w+F^0 ‖_L1=min. (first objective function)
‖F_1*w+F^0 ‖_L2=min. (second objective function)
‖F_1*w+F^0 ‖_L∞=min. (third objective function)
subjected to the same constraints
The results of both models (based on L1 and L2 ) are identical, while the result of the third model(based on Linf) is very close to the results of L1 and L2.
My question is: is there any explanation of these identicality between the results of L1 and L2 also for the very close result of Linf ?
Thanks
0 Kommentare
Akzeptierte Antwort
Matt J
am 5 Dez. 2020
Bearbeitet: Matt J
am 5 Dez. 2020
Yes, there are possibilities for F0 that can make this happen, e.g.
F0=[1 2 3 4 5];
fminsearch(@(w) norm(w-F0,1),3)
fminsearch(@(w) norm(w-F0,2),3)
fminsearch(@(w) norm(w-F0,inf),3)
8 Kommentare
Matt J
am 5 Dez. 2020
Bearbeitet: Matt J
am 5 Dez. 2020
Why is that "trivial"? Because the solution is unique? The point of the question was to find reasons why the solutions for all norms might be the same. Here is a case where the solution is not unique:
F1 =[ 0.8143 0.3500 0.8143
0.2435 0.1966 0.2435
0.9293 0.2511 0.9293];
F0=-sum(F1,2);
opts=optimset('MaxIter',5e4,'MaxFunEvals',5e6,'TolFun',1e-12,'TolX',1e-12);
w0=[2,1,0].';
fminsearch(@(w) norm(F1*w+F0,1), w0, opts)
fminsearch(@(w) norm(F1*w+F0,2),w0, opts)
fminsearch(@(w) norm(F1*w+F0,inf),w0, opts)
w0=[1,1,1].';
fminsearch(@(w) norm(F1*w+F0,1), w0, opts)
fminsearch(@(w) norm(F1*w+F0,2),w0, opts)
fminsearch(@(w) norm(F1*w+F0,inf),w0, opts)
Weitere Antworten (2)
Bruno Luong
am 6 Dez. 2020
Bearbeitet: Bruno Luong
am 6 Dez. 2020
This code is a toy example of 2 x 2 with random f0 and show most of the time it driven by the linear constraints and all three give [1;1] as solution. [1;1] is a sharp vertice of the feasible region. So it converge there regardless the selected norm.
Some other time they give different results (not a vertice of the feasible region). As long as the dimension of the span of the active constraints is less than the dimension of the problem (size of x), the current solution still have some degree of freedom to move and the objective norm is effectively matter (e.g. simple example of mean/median/(min+max)/2).
x = optimvar('x',2,1,'LowerBound',0);
A=[-7 8;
8 -7];
b=[1; 1];
f0 = 2*rand(2,1);
L1prob = optimproblem();
L1prob.Constraints.ineg = A*x <= b;
L1prob.Objective = sum(f0-x);
L1sol = solve(L1prob);
L1sol.x
L2prob = L1prob;
L2prob.Objective = sum((f0-x).^2);
L2sol = solve(L2prob);
L2sol.x
L10prob = L1prob;
L10prob.Objective = sum((f0-x).^10); % ~Linf, cannot translated by MATLAB pb based
L10prob = solve(L10prob, struct('x',[0;0]));
L10prob.x
So yes it's possible. Where as an explanation is suitable for YOUR problem, hard to tell with so little details.
13 Kommentare
Bruno Luong
am 7 Dez. 2020
Bearbeitet: Bruno Luong
am 7 Dez. 2020
- If you have an nice (convex) objective function f(x) and g(x):=2*f(x) and search for
xminf = argmin f(x)
xming = argmin g(x)
by wharever method to find them.
Is xminf = xming?
What are the values of min of f and g at the argmin?
2. Do you know you can check the min vavue by using the second output when calling MATLAB minimizer (here fmincon is given example, but any MATLAB solver will have the same output convention)
[xmin, fmin, ...] = fmincon(...)
These two should give you a hints to answer your question.
Bruno Luong
am 7 Dez. 2020
Bearbeitet: Bruno Luong
am 7 Dez. 2020
The optimizers fail to initialize find the first feasible point with its gradient and return the same guess, which are identical.
6 Kommentare
Matt J
am 8 Dez. 2020
Bearbeitet: Matt J
am 8 Dez. 2020
I'm just saying I'm struggling to see a statistical argument that would guarantee that STD for the L2 norm would be less than for the L1 norm. Assuming F0 is supposed to be Gaussian distributed N(-F1*wtrue,sig*I), then it is known that a minimum variance unbiased estimator of wtrue is a linear function of F0, but the min. L2 norm estimator is only a linear function of F0 in the unconstrained case, so I don't know how we extend things to the constrained case. Also, F1 is rank deficient in this case, so I don't immediately see how that will affect things either.
Siehe auch
Kategorien
Mehr zu Systems of Nonlinear Equations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!