Find the Kernel A=[[1,4],[3,6]]B=[[5,6],[2,5]]
Problem
Solution
Identify the task as finding the kernel (null space) of the matrix product
A*B Multiply the matrices
A andB to find the matrixC=A*B
Set up the equation
C*x=0 to find the kernel, wherex=[[(x_1)],[(x_2)]]
Row reduce the augmented matrix to solve the system of linear equations.
Divide the first row by
Subtract
Divide the second row by
Subtract
Conclude that since the reduced row echelon form is the identity matrix, the only solution is the trivial solution.
Final Answer
Want more problems? Check here!