About: Modulo operation     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : yago:Processing113541167, within Data Space : dbpedia.demo.openlinksw.com associated with source document(s)
QRcode icon
http://dbpedia.demo.openlinksw.com/c/6sMbanCauV

In computing, the modulo operation returns the remainder or signed remainder of a division, after one number is divided by another (called the modulus of the operation). Given two positive numbers a and n, a modulo n (often abbreviated as a mod n) is the remainder of the Euclidean division of a by n, where a is the dividend and n is the divisor. When exactly one of a or n is negative, the naive definition breaks down, and programming languages differ in how these values are defined.

AttributesValues
rdf:type
rdfs:label
  • عامل قسمة مع باقي (ar)
  • Operació mòdul (ca)
  • Modulo (de)
  • Operación módulo (es)
  • Modulo (opération) (fr)
  • Operasi modulus (in)
  • Operazione modulo (it)
  • 剰余演算 (ja)
  • Modulo operation (en)
  • Modulo (pl)
  • Operação módulo (pt)
  • Moduloräkning (sv)
  • 模除 (zh)
rdfs:comment
  • En informática, la operación módulo obtiene el resto de la división de un número entre otro (a veces llamado residuo).​ Dados dos números positivos, a (el dividendo) y n (el divisor), módulo n (abreviado como mod n)​es el resto de la división euclídea de a entre n. Por ejemplo, la expresión "5 mod 2" se evaluaría como 1 porque 5 dividido entre 2 tiene un cociente de 2 con un resto de 1, mientras que "9 mod 3" se evaluaría como 0 porque la división de 9 entre 3 tiene un cociente de 3 con un resto de 0, y se le llama mod al resultado continuo de una suma, resta o división de algún problema de un algoritmo. (es)
  • Tra i numeri interi è definita la funzione modulo, indicato con , che dà come risultato il resto della divisione euclidea del primo numero per il secondo. Cioè dati , con allora dà come risultato il resto della divisione euclidea . Per esempio, si ha , perché quindi e dunque il resto è . Se allora . Ad esempio , perché quindi e dunque il resto è proprio . In lingua italiana viene definito modulo anche il valore assoluto, pur non avendo legami con il resto di una divisione. (it)
  • 剰余演算(じょうよえんざん、モジュロとも呼ぶ)は、ある数値を別の数値(法と呼ばれることもある)で除算し、余りを取得する演算である。 (ja)
  • A operação módulo encontra o resto da divisão de um número por outro. Dados dois números a (o dividendo) e b o divisor, a modulo b (a mod b) é o resto da divisão de a por b. Por exemplo, 7 mod 3 seria 1, enquanto 9 mod 3 seria 0. (pt)
  • 模除(又稱模数、取模操作、取模運算等,英語:modulo 有时也称作 modulus)得到的是一个数除以另一个数的余数。 给定两个正整数:被除数 a 和除数 n,a modulo n (缩写为 a mod n)得到的是使用欧几里德除法时 a/n 的余数。举个例子:计算表达式 "5 mod 2" 得到 1,因为 5÷2=2...1(5 除以 2 商 2 餘1);而 "9 mod 3" 得到 0,因为 9÷3=3...0;注意:如果使用计算器做除法,不能整除时,你不会得到商,而是会得到一个小数,如:5÷2=2.5。 虽然通常情况下 a 和 n 都是整数,但许多计算系统允许其他类型的数字操作,如:对浮点数取模。一个整数对 n 取模的结果范围为: 0 到 n − 1(a mod 1 恒等于 0;a mod 0 则是未定义的,在编程语言里可能会导致除零错误)。有关概念在数论中的应用请参阅模算數。 当 a 和 n 均为负数时,通常的定义就不适用了,不同的编程语言对结果有不同的处理。 (zh)
  • في الحوسبة ،تحسب عملية القسمة مع الباقي modulo أو البقية المتوقعة بعد قسمة رقم على آخر (تسمى معيارية العملية). ليكن لدينا رقمينa و n ، (بشكل مختصر a mod n) هو ما تبقى من القسمة الإقليدية a على n، a هو المقسّم و n هو المقسوم عليه. على سبيل المثال، قيمة التعبير "" هو 1 لأن 5 مقسومة على 2 نتيحة حاصل قسمة 2 والباقي 1، في حين أن "" سيتم تقييمها إلى 0 لأن قسمة 9 على 3 لها حاصل قسمة يساوي 3 ويترك ما تبقى من 0؛ لا يوجد شيء للطرح من 9 بعد ضرب 3 ضرب 3. (إن إجراء القسمة باستخدام الآلة الحاسبة لن يُظهر النتيجة المشار إليها هنا بهذه العملية؛ سيتم التعبير عن القسمة على شكل كسر عشري.) (ar)
  • En informàtica, l'operació mòdul troba el residu de la divisió d'un nombre entre un altre (aquest residu també se sol anomenar mòdul). Donats dos nombres positius, a (el dividend) i n (el divisor), a mòdul n (abreujat com a mod n) és el residu de la divisió euclidiana de a entre n. Per exemple, l'expressió "5 mod 2" té com a resultat 1, perquè 5 dividit entre 2 dona un quocient de 2 i un residu d'1, mentre que "9 mod 3" té com a resultat 0, perquè la divisió de 9 entre 3 té un quocient de 3 i un residu de 0; no cal restar res de 9 després de multiplicar 3 per 3. Noteu que si es realitza la divisió amb una calculadora convencional, no es mostrarà el resultat indicat anteriorment, sinó que s'expressarà el quocient en forma de fracció decimal. (ca)
  • In computing, the modulo operation returns the remainder or signed remainder of a division, after one number is divided by another (called the modulus of the operation). Given two positive numbers a and n, a modulo n (often abbreviated as a mod n) is the remainder of the Euclidean division of a by n, where a is the dividend and n is the divisor. When exactly one of a or n is negative, the naive definition breaks down, and programming languages differ in how these values are defined. (en)
  • En informatique, l'opération modulo[réf. souhaitée], ou opération mod, est une opération binaire qui associe à deux entiers naturels le reste de la division euclidienne du premier par le second, le reste de la division de a par n (n ≠ 0) est noté a mod n (a % n dans certains langages informatiques). Ainsi 9 mod 4 = 1, car 9 = 2×4 + 1 et 0 ≤ 1 < 4, 9 mod 3 = 0, … L'opération peut être étendue aux entiers relatifs, voire aux nombres réels, mais alors les langages de programmation peuvent diverger, en particulier a mod n n'est plus forcément positif ou nul. (fr)
  • Dalam matematika dan dalam pemrograman komputer modulus, operasi modulus adalah sebuah operasi yang menghasilkan sisa pembagian dari suatu bilangan terhadap bilangan lainnya. Dalam bahasa pemrograman operasi ini umumnya dilambangkan dengan simbol %, mod atau modulo, tergantung bahasa pemrograman yang digunakan. (in)
  • Modulo – operacja wyznaczania reszty z dzielenia jednego typu liczbowego przez drugi. W dalszym ciągu napis będzie oznaczał, iż jest resztą z dzielenia przez Są różne sposoby określania reszty, a komputery i kalkulatory mają różne sposoby przechowywania i reprezentowania liczb, więc wynik operacji modulo zależy od języka programowania i/lub sprzętu. modulo 0 jest nieokreślone w większości systemów, choć niektóre określają je jako Jeśli definicja jest spójna z algorytmem dzielenia, wtedy implikuje co jest sprzeczne (tzn. zwykła reszta w tym wypadku nie istnieje). (pl)
rdfs:seeAlso
foaf:depiction
  • http://commons.wikimedia.org/wiki/Special:FilePath/Divmod_Euclidean.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Divmod_ceiling.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Divmod_floored.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Divmod_rounding.svg
  • http://commons.wikimedia.org/wiki/Special:FilePath/Divmod_truncated.svg
dct:subject
Wikipage page ID
Wikipage revision ID
Link from a Wikipage to another Wikipage
Faceted Search & Find service v1.17_git147 as of Sep 06 2024


Alternative Linked Data Documents: ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3331 as of Sep 2 2024, on Linux (x86_64-generic-linux-glibc212), Single-Server Edition (378 GB total memory, 50 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software