Largest linear Independent subset of n polynomials

125 views Asked by At

There are n polynomials in below format:

x(i)  
x(i)+1  
x(i)+x(k)  
x(i)+x(k)+1  
...  

We want to extract largest possible linear independant subset of above polynomials
I have tried Gassian elimination but it's too slow.
Any help is appreciated

1

There are 1 answers

0
samsam114 On

As I searched, the solution is to use SVD or QR Decomposition.
These are the case.
Regards