Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

How to find solution to the following matrix

[ a a + 1] [ a^2 a^2 + a]

Following is the code which tries to find solution to the 2X2 matrix A in field GF(2^4,'a'). I am trying to find solution(vector) x such that Ax=O; where O is a zero vector. The rank of A is 1 and still I am getting trivial solution(zero vector). How to find non-trivial solution of the above matrix

sage: F.=GF(2^4); sage: A=Matrix(GF(2^4,'a'),[[a,a^4],[a^2,a^5]]); sage: b=vector(GF(2^4,'a'),2) sage: A.rank() sage: A.solve_right(b) (0, 0)

click to hide/show revision 2
None

How to find solution to the following matrix

[ a a + 1] [ a^2 a^2 + a]

Following is the code which tries to find solution to the 2X2 matrix A in field GF(2^4,'a'). I am trying to find solution(vector) x such that Ax=O; where O is a zero vector. The rank of A is 1 and still I am getting trivial solution(zero vector). How to find non-trivial solution of the above matrix

sage: F.=GF(2^4);
F.<a>=GF(2^4);
sage: A=Matrix(GF(2^4,'a'),[[a,a^4],[a^2,a^5]]);
sage: b=vector(GF(2^4,'a'),2)
sage: A.rank()
sage: A.solve_right(b)
(0, 0) 

0)