[top][index]
search for:

odd -- tell whether an integer is odd

odd x -- returns true or false, tells whether x is an odd integer.

See also even.

Code:

     -- ../../../Macaulay2/m2/numbers.m2:3
     odd  = x -> 1 === x%2

[top][index]
search for: