🌐
UBC Math
personal.math.ubc.ca › ~PLP › book › sec-congruence.html
Congruence modulo n
Then \((a-b)+(b-c)=a-c = n(k+\ell)\) and so \(a \equiv c \mod n\text{.}\) ... Here is another example; congruence makes this easier to prove.
system of algebraic operations defined for remainders under division by a fixed positive integer; system of arithmetic for integers, where numbers "wrap around" upon reaching a certain value—the modulus
In mathematics, modular arithmetic is a system of arithmetic operations for integers, differing from the usual ones in that numbers "wrap around" when reaching or exceeding a certain value, called the modulus. … Wikipedia
🌐
Wikipedia
en.wikipedia.org › wiki › Modular_arithmetic
Modular arithmetic - Wikipedia
2 weeks ago - If a ≡ b (mod m) and a−1 exists, then a−1 ≡ b−1 (mod m) (compatibility with multiplicative inverse, and, if a = b, uniqueness modulo m). If ax ≡ b (mod m) and a is coprime to m, then the solution to this linear congruence is given by x ≡ a−1b (mod m). The multiplicative inverse x ≡ a−1 (mod m) may be efficiently computed by solving Bézout's equation a x + m y = 1 for x, y, by using the Extended Euclidean algorithm. In particular, if p is a prime number, then a is coprime with p for every a such that 0 < a < p; thus a multiplicative inverse exists for all a that is not congruent to zero modulo p.
Discussions

ELI5: How does a congruence modulo work?
I'm pretty sure it means that a and b have a congruent relationship when a modulo function of n is applied to them Yes, that's correct. All that means is that if you take a and b and remove as many factors of n as possible from each one, you get the same thing. For example, 1 ≡ 3 (mod 2) and 9 ≡ 5 (mod 4). More on reddit.com
🌐 r/explainlikeimfive
5
1
July 20, 2020
elementary number theory - Congruent Modulo $n$: definition - Mathematics Stack Exchange
In an Introduction to Abstract ... of the congruence mod operation, such as $13 \equiv5 \pmod4$, and $9 \equiv -1 \pmod 5$. But when I first learned about the modulo operation my junior year, I would have told you that $13 \equiv 1 \pmod 4$, and that $9 \equiv 4 \pmod 5$. Is this just a difference in the definition of modulo? Or is this pretty typical (to not take it to ... More on math.stackexchange.com
🌐 math.stackexchange.com
March 12, 2013
math mode - How to write the congruence modulo n symbol? - TeX - LaTeX Stack Exchange
When a is the remainder when b is divided by n, we say b is congruent to a mod n. How is it typeset using LaTeX? More on tex.stackexchange.com
🌐 tex.stackexchange.com
September 23, 2021
[Modular Arithmetic] Struggling with proof regarding congruence relation
From first principles and the algebraic definition of "prime": Suppose (n-x)2 ≡ x2 (mod p) for some n between 1 and p-1. Then there exists some integer k such that (n-x)2 - x2 = kp. So n2 - 2nx = kp. n(n - 2x) = kp. i.e. p divides n(n-2x). p is prime in the integers so if p divides n(n-2x) then p divides either n or n-2x. n is between 1 and p-1 so p cannot divide n. So p must divide (n-2x). Hence n is congruent to 2x modulo p. x is a number between 1 and p-1 so either n = 2x or n = 2x-p. if n = 2x then our original congruence reads ((2x)-x)2 ≡ x2 which is trivial. if n = 2x-p then our original congruence reads ((2x-p)-x)2 ≡ x2 which can be rearranged to read (p-x)2 ≡ x2, which is the one solution we were told beforehand. QED. More on reddit.com
🌐 r/learnmath
4
2
August 27, 2023
🌐
Whitman College
whitman.edu › mathematics › higher_math_online › section03.01.html
3.1 Congruence
As with so many concepts we will see, congruence is simple, perhaps familiar to you, yet enormously useful and powerful in the study of number theory. If $n$ is a positive integer, we say the integers $a$ and $b$ are congruent modulo $n$, and write $a\equiv b\pmod n$, if they have the same remainder on division by $n$. (By remainder, of course, we mean the unique number $r$ defined by the Division Algorithm.)
🌐
Reddit
reddit.com › r/explainlikeimfive › eli5: how does a congruence modulo work?
r/explainlikeimfive on Reddit: ELI5: How does a congruence modulo work?
July 20, 2020 -

I think I understand the basics of the modulo function. Assuming modulo 3 when counting up you'd go 0 > 1 > 2 > 0 ...

But then I see this equation:

a ≡ b (mod n)

And have trouble understanding it. I'm pretty sure it means that a and b have a congruent relationship when a modulo function of n is applied to them. But I'm not sure if this is correct, and what a congruent relationship is.

Thanks!

Top answer
1 of 3
1
I'm pretty sure it means that a and b have a congruent relationship when a modulo function of n is applied to them Yes, that's correct. All that means is that if you take a and b and remove as many factors of n as possible from each one, you get the same thing. For example, 1 ≡ 3 (mod 2) and 9 ≡ 5 (mod 4).
2 of 3
1
So, a ≡ b (mod n) simply means that (a-b) is divisible by n. This is equivalent to saying that if you apply the modulo n function to both a and b then you get the same result. You can easily check and see that this relation has three properties: If a ≡ b (mod n) then b ≡ a (mod n), because b-a is also divisible by n. This is called symmetry. a ≡ a (mod n) for every a, because a-a is always divisible by n. This is called reflexivity. If a ≡ b (mod n) and b ≡ c (mod n) then a ≡ c (mod n), because c-a = (c-b)-(a-b) which is divisible by n. This is called transitivity. A relation that has these three properties is called a equivalence relation. Why? Because it means that if two elements are in relation to each other, then they are "equivalent" in regards to that relation. Another cool thing is that when you an equivalence relation, you can group the elements into equivalence classes - divide all the elements into sets so that two elements are in the same set if and only if they are equivalent. Now, the modulo relation has another cool property - it preserves the algebraic operations. If a ≡ b (mod n) and c ≡ d (mod n) then a+c ≡ b+d (mod n), and the same goes for multiplication. In this case, the relation is called a congruence relation. This means that if you want to calculate (a+b) (mod n) then you can calculate a (mod n) + b (mod n) and apply (mod n) to that, and you'll get the same result.
Find elsewhere
🌐
American Institute of Mathematics
aimath.org › news › congruentnumbers › modulo.html
Basics about congruences and "modulo"
We say integers a and b are "congruent modulo n" if their difference is a multiple of n. For example, 17 and 5 are congruent modulo 3 because 17 - 5 = 12 = 4⋅3, and 184 and 51 are congruent modulo 19 since 184 - 51 = 133 = 7⋅19. We often write this as 17 ≡ 5 mod 3 or 184 ≡ 51 mod 19.
🌐
Texas A&M University
people.tamu.edu › ~yvorobets › › MATH433-2024A › Lect1-06web.pdf pdf
MATH 433 Applied Algebra Lecture 6: Congruences (continued).
Congruences (continued). Modular arithmetic. ... Let n be a positive integer. The integers a and b are called · congruent modulo n if they have the same remainder when
🌐
YouTube
youtube.com › blackpenredpen
What does a ≡ b (mod n) mean? Basic Modular Arithmetic, Congruence - YouTube
Congruence, Modular Arithmetic, 3 ways to interpret a ≡ b (mod n), Number theory, discrete math, how to solve congruence, blackpenredpen, math for fun, https...
Published   April 22, 2018
Views   303K
🌐
Okstate
math.okstate.edu › people › binegar › 3613 › 3613-l11.pdf pdf
LECTURE 11 Congruence and Congruence Classes
Definition 11.2. Let a, b, n ∈Z with n > 0. Then a is congruent to b modulo n; ... The following theorem tells us that the notion of congruence defined above is an equivalence relation on the
🌐
YouTube
youtube.com › watch
Congruence Modulo n Multiplication Proof - Clever Proof - YouTube
Congruence Modulo n Multiplication Proof - Clever ProofProof that if a is congruent to b and c is congruent to d then ac is congruent to bd.
Published   January 26, 2019
🌐
YouTube
youtube.com › watch
(Abstract Algebra 1) Congruence Modulo n - YouTube
This video introduces the notion of congruence modulo n with several examples. In addition, congruence modulo n is shown to be an equivalence relation on th...
Published   February 21, 2015
🌐
YouTube
youtube.com › ant0nmath
9.2.1 - Congruence (Modular Arithmetic) - YouTube
Introduction to modular arithmetic and congruence.
Published   April 25, 2013
Views   55K
🌐
YouTube
youtube.com › watch
Number Theory | Congruence Modulo n -- Definition and Examples - YouTube
We define the notion of congruence modulo n among the integers.http://www.michael-penn.net
Published   September 6, 2019
🌐
YouTube
youtube.com › watch
2.2.1 Congruence mod n: Video
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
🌐
Texas A&M University
people.tamu.edu › ~yvorobets › MATH415-2021A › Lect3-04web.pdf pdf
MATH 415 Modern Algebra I Lecture 16: Modular arithmetic.
congruent modulo n if they have the same remainder when · divided by n. An equivalent condition is that n divides the ... Hint: 10m ≡1 mod 9, 10m ≡1 mod 3, 10m ≡(−1)m mod 11. ... For example, [2]4 = [2]8 ∪[6]8. The congruence class [a]n = a + nZ is a coset of the
🌐
Stanford CS Students
www-cs-students.stanford.edu › ~dalewis › congruent
Congruency
The point of congruency is the following: If we say that a b (mod n), this means that in the scope of "mod n", a and b are equivalent. How is this so? Consider an extension on the example above. We already know that 15 3 (mod 4). We can also say that 15 19 (mod 4), since 15 mod 4 gives the ...
🌐
University of Colorado Boulder
math.colorado.edu › ~liuf › 2001001F2017 › CongruenceModNWorksheet.pdf pdf
Congruence mod n and Modular Arithmetic
the same for the integers that are congruent to 1 modulo 3 then again for the integers that are congruent to 2 ... 6. There are a couple of common ways to determine if two numbers are congruent modulo n.
🌐
YouTube
youtube.com › kelley's math & stats help
Congruence Classes - YouTube
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Published   January 7, 2016
Views   12K