[sage-support] Generating all solutions of a system over finite field in SAGE

2016-08-04 Thread Juan Grados
I need a operator, or function, to found all solutions of a linear system over the finite field F_2. For example in the next code I have generated a random linear system of the form Ax=b, where A=[[1,1,1], [0,1,1]] and b = [0,1], but when I used the operator \ I have only one solution [1,1,0], but

Re: [sage-support] Generating all solutions of a system over finite field in SAGE

2016-08-04 Thread Vinay Wagh
You can explore the inbuilt function `solve_mod`... You will have to input your system in the form of equations and not in form of a matrix. The function also accepts system of non-linear congruences! VInay On 4 August 2016 at 22:50, Juan Grados wrote: > I need a operator, or function, to f