Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Integer Functions >

Mod

Mod[m, n]
gives the remainder on division of m by n.
Mod[m, n, d]
uses an offset d.
  • Integer mathematical function, suitable for both symbolic and numerical manipulation.
  • For integers m and n, Mod[m, n] lies between 0 and n-1.
  • Mod[m, n, 1] gives a result in the range 1 to n, suitable for use in functions such as Part.  »
  • Mod[m, n, d] gives a result x such that d≤x<d+n and xmodn=mmodn.
  • The sign of Mod[m, n] is always the same as the sign of n, at least so long as m and n are both real.
  • Mod[m, n] is equivalent to m-n Quotient[m, n].
  • Mod[m, n, d] is equivalent to m-n Quotient[m, n, d].
  • The arguments of Mod can be any numeric quantities, not necessarily integers.  »
  • Mod[x, 1] gives the fractional part of x.
  • For exact numeric quantities, Mod internally uses numerical approximations to establish its result. This process can be affected by the setting of the global variable $MaxExtraPrecision.
  • Mod works with complex numbers, using its definition in terms of Quotient.
  • Mod automatically threads over lists.
New in 1 | Last modified in 4
© 2013 Wolfram Research, Inc. Japanese
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team