Find the Null Space s={[[-7],[5],[1]],[[-6],[5],[0]]}
Problem
Solution
Identify the task as finding the null space of a matrix
A where the given vectors are the columns of that matrix.Construct the matrix
A using the given vectors as columns.
Set up the homogeneous equation
A*x=0 to find the null space, wherex=[[(x_1)],[(x_2)]]
Solve the system of linear equations. From the third row, we have
1*(x_1)+0*(x_2)=0
Substitute
(x_1)=0 into the second row equation5*(x_1)+5*(x_2)=0
Conclude that the only solution to the system is the trivial solution
x=[[0],[0]] Since the columns are linearly independent, the null space contains only the zero vector.
Final Answer
Want more problems? Check here!