I have a set of m-1 vectors of size n, they are independence. I want to add another vector and to check if the m vectors are still independence. It is known m < n. I am looking for a good algorithm & running time. Thanks
2026-03-31 13:26:21.1774963581
how do I check linear independence of m vectors, given the m-1 first vectors are independence?
98 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
You can use the following criterion :
If you have $\ m-1\ $ linear independent vectors, then adding the $\ m\ $- th vector gives again a linear independent set if and only if the $\ m\ $ - th vector is not a linear-combination of the original $\ m-1\ $ vectors, in other words there are no real numbers $\ a_1,\cdots, a_{m-1}\ $ with $$\sum_{j=1}^{m-1} a_jv_j=v_m$$
For the check I suggest to collect the vectors in a matrix and determine the rank.