Finding Perfect Squares Modulo a Number: 4 (mod 10) Example

  • Thread starter daster
  • Start date
  • Tags
    Squares
In summary, perfect squares modulo a are integers that can be expressed as the square of another integer (foo) when divided by a. There is no straightforward method to find perfect squares modulo a, but for prime moduli, there is a method called quadratic reciprocity. However, this method does not apply to higher degree problems such as finding perfect cubes. It is possible to determine if a number is a perfect square modulo a by considering its congruence with a smaller modulus. For example, if a number is not a perfect square modulo a smaller modulus, it is not a perfect square modulo the original modulus. This can be applied to equations with multiple variables, such as x^2 + 9y = 5, to determine if
  • #1
daster
How do I find out if a number is a perfect square modulo a? For example, is 4 (mod 10) a perfect square?
 
Physics news on Phys.org
  • #2
An integer num is called a perfect square modulo a if num = foo^2 mod a for some integer foo.

4 = 4(mod 10) so go figure!

-- AI
 
  • #3
How about if we have something bigger, like 5 (mod 1234). How can we figure that out?

Also, does the same apply to perfect cubes?
 
  • #4
There is no straight forward method. You have to try all numbers and if there is a number foo such that 5 = foo^2(mod 1234), you are done.(I would simply write up a small program and finish it off. Note that you will find foo between 0 and 1234, you don't have to look beyond).

These numbers are also called quadratic residues.
http://mathworld.wolfram.com/QuadraticResidue.html
There is a method given to find quadratic residue for (mod p) where p is prime.

And ofcourse there are also cubic residues.
http://mathworld.wolfram.com/CubicResidue.html

-- AI
 
  • #5
well in the first place, you never lose the property of being a perfect square by modding out. so since 4 is a perfect square in the integers 4 = 2^2, it willk always be a perfect square modulo any integer. so that one question was a little naive.

then as to other more interesting cases like 5 mod 1234, i think there is a theory due to gauss which cuts the problem in half, at least when perhaps prime moduli are involved? called quadratic reciprocity. i.e. one number is a square modulo another if and only if the other is (or sometimes is not) a square modulo the other?

check this out. it is a major result. but higher degree problems do not enjoy the symmetry and simplicity of squaring problems.

here is the reciprocity theorem from one of the sites given above:

Number Theory Reciprocity Theorems


Quadratic Reciprocity Theorem

Also called the aureum theorema (golden theorem) by Gauss. If p and q are distinct odd primes, then the congruences
x^2 cong to p (mod q) and x^2 cong to q (mod p)

are both solvable or both unsolvable unless both p and q leave the remainder 3 when divided by 4 (in which case one of the congruences is solvable and the other is not).

thus for example, since 29 is congruent to the square 4 mod 5, we have 29 is a square mod 5, so then 5 is also a square mod 29, without having to find the square root. in fact 11^2 = 121 = 5 + 4(29) is congruent to 5 (mod 29). so mod 29, 11 is a square root of 5.

then if we ask whether 5 is a square, not mod 1234, but mod half of that, say mod 617, then since 617 is cong to 2 mod 5, and since 2 is not a square mod 5, it follows that 5 is not a square mod 617. hence 5 cannot be a square mod 1234 either, so in fact there is a method for solving your original problem. i.e. if x satisfies x^2 = (1234)n + 5, then x also satisfies x^2 = (617)(2n) + 5. since the second equation has no solution, neither does the first.

there is no such trick known to me for solving cubic equations or higher degree ones. indeed the study of cubic equations is called the theory of elliptic curves and is a huge subject of study even today, with ramifications in the proof of fermat's last theorem.
 
Last edited:
  • #6
For cubes, we have the situation that if p-1, representing the multiplicative group, is not divisible by 3, then the cubes are simply
a permutation of the group. Take the case for p=5, there (1,2,3,4) each cubed Mod 5 gives (1,3,2,4) Mod 5.
 
  • #7
daster, do you understand what he is saying? he is saying that if p is a prime, and 3 does not divide p-1, then every integer is a perfect cube mod p.

the reason is you look at the set of all cubes and then to say every number is a cube is equivalent to saying no two numbers have the same cube. but if two numbers have the same cube then their quotient has cube one. if a has cube one however and a≠1, then {a, a^2,1} froms a subgroup of order three of the group of non zero numbers mod p. but the order of subgroup divides the order of a group, so 3 must divide p-1.

for squares this condition is uninteresting since most primes p are odd, so 2 usually does divide p-1.
 
Last edited:
  • #8
Thanks for that!

I have another question.. Say we have the equation:
x^2 + 9y = 5, if we consider it modulo 9, does that give us:
x^2 = 5 (mod 9)?

If that's true, does it follow that there are no (x, y) integer solution pairs for the equation (since 5 isn't a prefect square modulo 9)?
 
  • #9
yes, that is correct.
 
  • #10
That's good to know. Thank you.
 

What is a perfect square?

A perfect square is a number that can be expressed as the product of two equal integers. For example, 9 is a perfect square because it can be expressed as 3 x 3.

What does "modulo" mean?

"Modulo" is a mathematical operation that finds the remainder after division. In this case, we are looking for perfect squares of numbers when divided by 10.

Why are we finding perfect squares modulo 10?

This type of problem is often encountered in computer programming and cryptography, where perfect squares are used in encryption algorithms. Finding perfect squares modulo a number can also help with simplifying and solving complex equations.

How do we find perfect squares modulo 10?

To find perfect squares modulo 10, we can use the fact that the last digit of a perfect square is determined by the last digit of its square root. For example, the last digit of 9 squared (81) is 1, and the last digit of 3 squared (9) is also 1.

What is an example of finding perfect squares modulo 10?

An example of finding perfect squares modulo 10 would be: What is the remainder when 7 squared is divided by 10? The answer is 9, because the last digit of 7 squared is 9.

Similar threads

Replies
11
Views
479
  • Linear and Abstract Algebra
Replies
2
Views
782
  • Linear and Abstract Algebra
Replies
10
Views
359
Replies
5
Views
2K
Replies
1
Views
928
  • Programming and Computer Science
Replies
18
Views
1K
  • Programming and Computer Science
Replies
10
Views
719
  • Linear and Abstract Algebra
Replies
5
Views
1K
  • Linear and Abstract Algebra
Replies
2
Views
1K
  • Linear and Abstract Algebra
Replies
11
Views
1K
Back
Top