Here is the input: ``` Eigenvectors({{1,0,0}, {-2,1,0}, {0,1,1}}) ``` The current implement shows the following errror: <img width="443" alt="image" src="https://github.com/axkr/symja_android_library/assets/19369448/c9623dfc-161e-42ad-a851-c70e3bad9566"> The `Det` of the input matrix is 1 ``` Det[ {{1,0,0}, {-2,1,0}, {0,1,1}} ] = 1 ``` Expected result: ``` {{0,0,1},{0,0,0},{0,0,0}} ```