All of the examples can be found in Jupyter notebook form here.

Robust approximate fitting

Section 6.4.2 Boyd & Vandenberghe "Convex Optimization" Original by Lieven Vandenberghe Adapted for Convex by Joelle Skaf - 10/03/05

Adapted for Convex.jl by Karanveer Mohan and David Zeng - 26/05/14 Original cvx code and plots here: http://web.cvxr.com/cvx/examples/cvxbook/Ch06approxfitting/html/fig6_15.html

Consider the least-squares problem: minimize $\|(A + tB)x - b\|_2$ where $t$ is an uncertain parameter in [-1,1] Three approximate solutions are found:

  1. nominal optimal (i.e. letting t=0)
  2. stochastic robust approximation: minimize $\mathbb{E}\|(A+tB)x - b\|_2$ assuming $u$ is uniformly distributed on [-1,1]. (reduces to minimizing $\mathbb{E} \|(A+tB)x-b\|^2 = \|A*x-b\|^2 + x^TPx$ where $P = \mathbb{E}(t^2) B^TB = (1/3) B^TB$ )
  3. worst-case robust approximation: minimize $sup_{-1\leq u\leq 1} \|(A+tB)x - b\|_2$ (reduces to minimizing $\max\{\|(A-B)x - b\|_2, \|(A+B)x - b\|_2\}$ ).
using Convex, LinearAlgebra, SCS
if VERSION < v"1.2.0-DEV.0"
     LinearAlgebra.diagm(v::AbstractVector) = diagm(0 => v)
end

Input Data

m = 20;
n = 10;
A = randn(m,n);
(U,S,V) = svd(A);
S = diagm(exp10.(range(-1, stop=1, length=n)));
A = U[:, 1:n] * S * V';

B = randn(m, n);
B = B / norm(B);

b = randn(m, 1);
x = Variable(n)
Variable
size: (10, 1)
sign: real
vexity: affine
id: 952…853

Case 1: Nominal optimal solution

p = minimize(norm(A * x - b, 2))
solve!(p, SCSSolver(verbose=0))
x_nom = evaluate(x)
10×1 Array{Float64,2}:
  0.15038657501646222
 -0.63886792014363   
  0.39373551310129645
 -2.109035672226009  
  2.595712169663207  
  2.775298871216034  
 -1.4247003645726894 
  3.4281049093358074 
  1.177547343822209  
  0.621397857613255  

Case 2: Stochastic robust approximation

P = 1 / 3 * B' * B;
p = minimize(square(pos(norm(A * x - b))) + quadform(x, Symmetric(P)))
solve!(p, SCSSolver(verbose=0))
x_stoch = evaluate(x)
10×1 Array{Float64,2}:
  0.3021833978247223 
 -0.41552856085609685
  0.08738877499469053
 -1.4965058119085723 
  0.6935649583795812 
  1.5621735303070192 
 -0.974302596254209  
  2.543613188783625  
  0.5094713326710011 
  0.16229430343653375

Case 3: Worst-case robust approximation

p = minimize(max(norm((A - B) * x - b), norm((A + B) * x - b)))
solve!(p, SCSSolver(verbose=0))
x_wc = evaluate(x)
10×1 Array{Float64,2}:
  0.45032426364198014
  0.12263639867345212
 -0.35410267222817504
 -1.0481002770447132 
 -0.40977802626748067
  0.7857181191501095 
 -0.5944198577374519 
  1.4537593515993144 
  0.5350163651309991 
 -0.24792661795780205

plot residuals

parvals = range(-2, stop=2, length=100);

errvals(x) = [ norm((A + parvals[k] * B) * x - b) for k = eachindex(parvals)]
errvals_ls = errvals(x_nom)
errvals_stoch = errvals(x_stoch)
errvals_wc = errvals(x_wc)


using Plots
plot(parvals, errvals_ls, label="Nominal problem")
plot!(parvals, errvals_stoch, label="Stochastic Robust Approximation")
plot!(parvals, errvals_wc, label="Worst-Case Robust Approximation")
plot!(title="Residual r(u) vs a parameter u for three approximate solutions", xlabel="u", ylabel="r(u) = ||A(u)x-b||_2")
-2-10123.03.54.04.55.0Residual r(u) vs a parameter u for three approximate solutionsur(u) = ||A(u)x-b||_2Nominal problemStochastic Robust ApproximationWorst-Case Robust Approximation

This page was generated using Literate.jl.