In one of the programming work I am doing, I encountered a set of linear eqns. with modulo. I am putting it in simple format with only 2 variables,
$$(a_{11}x + a_{12}y) \mod 8 = b_1$$ $$(a_{21}x + a_{22}y) \mod 8 = b_2$$
In case of simple eqns. with out modulo I can use: $AX=B$, $X=A^{-1}B$. But how to handle this modulo? Any clue or pointers will be very helpful.