solving a matrix equation modulo m
Hello,
I am quite new to sage an have troubles with the following problem:
I'm given a matrix 'A' and a vector 'b' and a positiv interger 'm' (m does not have to be prime). 'A' is a matrix with more rows than collums, so it is not quadratic. I would like to find the solution 'x' of the equation: A*x = b (mod m).
I have tried to manage it with e.g.:
A.solve_right(Integers(m),p),
but this works only if m is prime. I also was able to solve my problem if I explicitly insert the equations like this:
gp('matsolvemod([1,2;1,3],6,[1,0]~,1)')
But I need something, where I just have to specify 'A' and 'b' (and of course m). Can somebody help me?
best regards