Exercise 2.5.38

Answers

Ax = b has many solutions when A = ones (4,4) = singular and b = ones (4,1). Ab in MATLAB will pick the shortest solution x = (1,1,1,1)4. This is the only solution that is a combination of the rows of A (later it comes from the "pseudoinverse" A+ = pinv (A) which replaces A1 when A is singular). Any vector that solves Ax = 0 could be added to this particular solution x.

User profile picture
2021-12-19 17:42
Comments