Solve homogenous system Ax = 0 for any m * n matrix A in R (find null space basis for A)
问题 How to solve a homogenous system Ax = 0 , when A is any m * n matrix (not necessarily a square one) in R? # A=[-0.1 0.1]= 1x2 matrix; x=2x1 to be found; 0: 1x1 zero matrix A <- t(matrix(c(-0.1,0.1))) This question seems to be equivalent of finding the kernel (null space) of an Rn -> Rm (can't do superscript; sorry) linear transformation. 回答1: Anyway, the solution for the above specific matrix A will suffice to me. We can eye-spot it, x = (a, a) , where a is an arbitrary value. A classic /