Solving Separable Least Square Problem - Isy

  • Context: Undergrad 
  • Thread starter Thread starter isolde_isy
  • Start date Start date
  • Tags Tags
    Separable Square
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
isolde_isy
Messages
2
Reaction score
0
Hi I have to solve the following LSQ problem:
min(||Aax-b||2)

where
A is a known matrix,
b is a know vector
x is an unknows vector
a is an unknown scalar

I can solve directly via pseudo inverse
ax=inv(A'A)A'b
but how can I isolate a from x?

Could Separable least square a scheme to follow...
Thnaks in advance
Isy :smile:
 
Mathematics news on Phys.org
So it can be reformulate the problem in lsq constrained
min(||Aax-b||2)
subject to ||x||=1

Right?
Thanks Isy
 
isolde_isy said:
So it can be reformulate the problem in lsq constrained
min(||Aax-b||2)
subject to ||x||=1

Right?
Thanks Isy
Yes - but note that there would (for real vector spaces) be two possibilities, since a and -a, associated with x and -x would satisfy.