A Special System of Linear Congruences

  • Context: Undergrad 
  • Thread starter Thread starter e(ho0n3
  • Start date Start date
  • Tags Tags
    Linear System
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 2K views
e(ho0n3
Messages
1,349
Reaction score
0
Suppose I have a system of m equations in k unknowns

[tex] \begin{align*}<br /> a_{11}x_1 + a_{12}x_2 + \cdots + a_{1k}x_k &= 0 \pmod d \\<br /> &\vdots \\<br /> a_{m1}x_1 + a_{m2}x_2 + \cdots + a_{mk}x_k &= 0 \pmod d<br /> \end{align*}[/tex]

with the restriction that [itex]0 \le x_n < n[/itex]. How do I solve such a thing? Will Gaussian elimination work? What if I get a solution where one of the x's is outside its bounds?
 
Physics news on Phys.org
Gaussian elimination will work, if all operations are done mod d (I suspect this d should be n).

What if I get a solution where one of the x's is outside its bounds?

Reduce it mod d (or n).
 
JSuarez said:
Gaussian elimination will work, if all operations are done mod d (I suspect this d should be n).
No, it should be mod d.

What if I get a solution where one of the x's is outside its bounds?
Reduce it mod d (or n).
I messed up with the restrictions. It should be [itex]0 \le x_n \le i_n[/itex] for some given [itex]i_n[/itex]. If I mod an x by d or by [itex]i_n[/itex], it will screw up the solution because when I plug a mod'ed x back into the system, the numbers won't come out right. I would have to mod all the x's by d, by this will automatically happen if I do Gaussian elimination by mod d. However, the problem remains: What if one of the x's is outside its bound?
 
Then, if after reducing mod d, there is a violation of any of the restrictions, we must conclude that there is no solution.
 
You have a good point there. Thanks for your help.