Ask Your Question

Raghu's profile - activity

2024-02-29 10:29:34 +0200 received badge  Famous Question (source)
2021-09-25 19:05:53 +0200 received badge  Notable Question (source)
2021-02-02 22:21:17 +0200 received badge  Popular Question (source)
2017-03-23 16:04:05 +0200 received badge  Student (source)
2017-03-23 14:52:20 +0200 asked a question 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.<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)