yy205001
- 60
- 0
Homework Statement
a)Let M be a m*n matrix and x be a n*1 coordinate vector. How can you check whether or not x is in the solution space of M?
[0 1 1 1 0]
M=[1 1 0 0 1]
[0 1 1 0 1]
[1 0 1 0 0]
b)To decide whether or not the following are in the solution space of M
i) v1=[1 0 0 1 1]T ii) v2=[1 0 0 1 1]T
*T means the transpose of the matrices
Any help is appreciated
Homework Equations
{x\inℝn:Ax=0}
The Attempt at a Solution
I started by solving the homogeneous linear equation:
M*v1=0
[0 1 1 1 0]
[1 1 0 0 1]*[0 1 0 1 1]T = 0
[0 1 1 0 1]
[1 0 1 0 0]
[2 2 2 0]T ≠ 0
∴ v1 is not in the solution space of M
Am i doing the right here??