search
HomeCommon ProblemWhat does mod mean in algorithm?

What does mod mean in algorithm?

Aug 29, 2020 pm 12:43 PM
modalgorithm

In the algorithm, mod means taking the modulo, which is taking the remainder. The mod operation, that is, the remainder operation, is an operation that finds the remainder of dividing an integer x by another integer y in integer operations, without considering the quotient of the operation.

What does mod mean in algorithm?

The mod operation, that is, the remainder operation, is an operation that finds the remainder of dividing an integer x by another integer y in integer operations, regardless of the operation. quotient. There is MOD operation in computer programming, and its format is: mod(nExp1,nExp2), which is the remainder after dividing two numerical expressions.

Modulo p operation editor

Given a positive integer p and any integer n, there must be an equation

n = kp r where k , r is an integer, and 0 ≤ r

For positive integer p and integers a and b, the following operation is defined:

Modulo operation: a mod p represents the remainder of dividing a by p.

Addition modulo p: (a b) mod p, the result is the remainder of the arithmetic sum of a b divided by p, that is, (a b) = kp r, then (a b) mod p = r.

Modul p subtraction: (a-b) mod p, the result is the remainder of the arithmetic difference a-b divided by p.

Modul p multiplication: (a × b) mod p, the result is the remainder of the a × b arithmetic multiplication divided by p.

It can be found that the modular p operation has many similar rules to the four ordinary arithmetic operations, such as:

Associative Law
((a b) mod p c)mod p = (a (b c) mod p) mod p
((a*b) mod p * c)mod p = (a * (b*c) mod p) mod p
COMmutativity
(a b) mod p = (b a ) mod p
(a × b) mod p = (b × a) mod p
##distributive law
((a b)mod p × c) mod p = ((a × c) mod p (b × c) mod p) mod p
(a×b) mod c= (a mod c * b mod c) mod c
(a b) mod c=(a mod c b mod c) mod c
(a-b) mod c=(a mod c- b mod c ) mod c
Simple proof of the first formula:

((a b) mod p c) mod p = (a (b c) mod p) mod p

Assume

a = k1*p r1

b = k2*p r2

c = k3*p r3

a b = (k1 k2) p (r1 r2)

If (r1 r2) >= p, then

(a b) mod p = (r1 r2 ) -p

Otherwise

(a b) mod p = (r1 r2)

Then perform modulo p sum operation with c, and the result is

The remainder of the arithmetic sum of r1 r2 r3 divided by p.

The same result can be obtained by calculating the right side, and the proof is obtained.

Equal modulo p

If two numbers a and b satisfy a mod p = b mod p, then they are said to be equal modulo p, denoted as

a ≡ b (mod p)

It can be proved that at this time, a and b satisfy a = kp b, where k is an integer.

For equality modulo p and multiplication modulo p, there is a completely different rule from the four arithmetic operations. In the four arithmetic operations, if c is a non-0 integer, then

ac = bc can be obtained as a =b

. However, in the modulo p operation, this relationship does not exist, for example:

(3 x 3) mod 9 = 0

(6 x 3) mod 9 = 0

But

3 mod 9 = 3

6 mod 9 =6

Theorem (elimination law): If gcd(c,p) = 1, then ac ≡ bc mod p can deduce a ≡ (b mod p)

Proof:

Because ac ≡ bc (mod p)

so ac = bc kp, that is, c(a-b) = kp

Because c and p are not divided by 1 Common factors other than , then c|kp

Because c and p have no common factors, it is obvious that c|k, so k = ck'

Therefore c(a-b)=kp can be expressed as c(a-b) =ck'p

Therefore a-b = k'p, it follows that a ≡ b (mod p)

If a = b, then a ≡ b mod p is obviously true

得证

For more related knowledge, please visit:

PHP中文网

!

The above is the detailed content of What does mod mean in algorithm?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software