Finding Modulus Relations in Equations

In summary, the method to solving equations modulus a number can be found in a more complex form than a simpler form, and it is possible to find certain solutions using a Chinese Remainder Theorem. However, the case of n==1Mod 3 is not solvable, and is beyond the capabilities of the Chinese Remainder Theorem.
  • #1
TylerH
729
0
Where, on the internet, can one learn the method to solving equations modulus a number? I'd like to learn the method for finding such relations as this special case for the Erdos-Straus Conjecture, with n ≡ 2 (mod 3).

Also, what is the technical name for finding the mod n relations in an equation?
 
Physics news on Phys.org
  • #2
I'm pretty sure that you solve it in relatively the normal way. Normally, you end up with a rational number solution to a linear system. Well, over integers, modulo some number, the number in the denominator is not actually divided by in the usual way, but let's say the denominator is d, then you would find the integer q such that d*q=1 mod (whatever), and instead of dividing by d as you would in a linear system over the real numbers, over the integers modulo whatever, you would then multiply by q. The one thing to watch out for, is that if d and whatever (I should have given it a variable letter darnit) have a common factor, if they aren't relatively prime, then there will be no solution for q. But that's nothing new, that's just a new way for the determinant to be 0. So if the determinant of the matrix describing your linear relation is not just 0 as it is with linear systems over all real numbers, but any integer which has any factor in common with "whatever", then you can't solve it.

Now, if you want to solve it where each line in the linear system is modulo a different number, for instance x+3y=4 mod 5, and 2x-y=2 mod 6, then that method isn't going to work. And if it is a nonlinear equation, that is NP complete, so you'd best avoid trying unless you have a polynomial time algorithm for NP problems.
 
  • #3
The reference given, as you know, completely handles the case for n==2Mod3. This comes about from the form, where( n-2)/3 is an integer. It seems possible that the form was just found by chance. [tex]\frac{4}{n} =\frac{1}{n} +\frac{1}{(n-2)/3+1}+\frac{1}{(n^2+n)/3}[/tex]

Which, but not in the right form, simplifies to: [tex]\frac{4}{n}=\frac{1}{n}+\frac{3}{n+1}+\frac{3}{n^2+2}[/tex]

This is a more complex form harder to find than a simpler form, which may have been a starting point for the above, [tex]\frac{2}{n} = \frac{1}{n}+\frac{1}{n+1}+\frac{1}{n^2+n}[/tex]

This uses a splitting method and if length is not a problem, we could replace 1/(n+1) with 1/(n+2) + 1/(n+2)(n+3) Thus the length of the Egyptian fraction could be increased and increased, but in the case under consideration we are only interested in three term Egyptian fractions.

Maybe you want to study Egyptian fractions further, I am not exactly sure of your questions. The standard method on solving multiple congruences is the Chinese Remainder Theorem.

Now on that simple form above we can find things like 1/5=1/10+1/11+1/110. So that 2/p can always be found in three terms of an Egyptian fraction.

However, in the specialized case of 4/n dealing with 3 Egyptian fractions, Mordel has shown that certain forms will not work like the case of n==2 Mod 3. In fact, Mordel shows that n==1 Mod 3 will not work the same way so we can not rely on a similar polynominal identity for all cases.
 
Last edited:
  • #4
[tex]\frac{4}{n}=\frac{1}{n}+\frac{3}{n+1}+\frac{3}{n^2 +2}[/tex]

The above was a mistake, and should be: [tex]\frac{4}{n}=\frac{1}{n}+\frac{3}{n+1}+\frac{3}{n^2 +n}[/tex]

Here is my improvised form: [tex]\frac{4}{n} = \frac{1}{n/3}+\frac{1}{n+1}+\frac{1}{n^2+n}[/tex]

Which will work as long as 3 divides n, for example= 4/15=1/5+1/16+1/240.

Now the only thing we would need to compete the problem would be to solve for n==1Mod 3, which Mordel assures us is not possible. However with a minus sign, we would have: [tex]\frac{4}{n} = \frac{1}{n} +\frac{1}{(n-1)/3}-\frac{1}{(n^2-n)/3}[/tex]
 
Last edited:
  • #5


The method for solving equations modulo a number can be found on various math websites and forums, as well as in textbooks on number theory and abstract algebra. Some good resources to start with include Khan Academy, Wolfram MathWorld, and Math Stack Exchange. The specific technique for finding mod n relations in equations is known as modular arithmetic or congruence relations. It involves manipulating equations with the use of modular arithmetic operations, such as addition, subtraction, multiplication, and division. In the case of the Erdos-Straus Conjecture, the technique would involve finding solutions for the equation n ≡ 2 (mod 3) and determining if there are any patterns or relations between these solutions. This approach is commonly used in number theory and has many practical applications in fields such as cryptography and computer science.
 

What is a modulus relation in equations?

A modulus relation in equations is a mathematical expression that represents the remainder when one number is divided by another. It is denoted by the % symbol in most programming languages.

How do you find modulus relations in equations?

To find the modulus relation in an equation, you need to use the modulus operator % between two numbers. For example, the modulus relation of 9 % 4 is 1 because 9 divided by 4 leaves a remainder of 1.

Why are modulus relations important in equations?

Modulus relations are important in equations because they help us solve problems involving remainders. They are also widely used in computer programming, particularly in conditional statements and loops.

What are some real-life applications of modulus relations?

Modulus relations have several real-life applications, such as calculating interest rates in finance, finding the day of the week in calendars, and generating unique IDs in databases.

Can you give an example of how to use modulus relations in a problem?

Yes, for example, if you want to find the remainder when 23 is divided by 5, you can use the modulus operator %, and the answer would be 3. Another example is using modulus relations to check if a number is even or odd. If a number is divided by 2 and the remainder is 0, it is even, and if the remainder is 1, it is odd.

Similar threads

Replies
5
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
923
  • General Math
Replies
4
Views
727
  • Linear and Abstract Algebra
Replies
4
Views
1K
  • Linear and Abstract Algebra
Replies
8
Views
943
  • General Math
Replies
29
Views
3K
  • Linear and Abstract Algebra
Replies
5
Views
1K
  • Precalculus Mathematics Homework Help
Replies
2
Views
2K
Replies
5
Views
715
  • Linear and Abstract Algebra
Replies
1
Views
639
Back
Top