AbelianGroup[{n_1, n_2, ...}] represents the direct product of the cyclic groups of degrees n_1, n_2, ....
Kernels
(Built-in Mathematica Symbol) Kernels[] gives the list of running kernels available for parallel computing.
NormFunction is an option for functions such as FindFit and NDSolve which gives a function to be minimized in generating results.
PolynomialQuotientRemainder[p, q, x] gives a list of the quotient and remainder of p and q, treated as polynomials in x.
General issues about the internal implementation of Mathematica are discussed in "The Internals of Mathematica". Given here are brief notes on particular features. These ...
A remote kernel in use may fail at any time, due to hardware, network, or software problems. A failure of a remote kernel will be noticed the next time Parallel Computing ...
ParallelEvaluate[expr] evaluates the expression expr on all available parallel kernels and returns the list of results obtained.ParallelEvaluate[expr, kernel] evaluates expr ...
NestWhile[f, expr, test] starts with expr, then repeatedly applies f until applying test to the result no longer yields True. NestWhile[f, expr, test, m] supplies the most ...
Mod
(Built-in Mathematica Symbol) Mod[m, n] gives the remainder on division of m by n. Mod[m, n, d] uses an offset d.
CloseKernels[] terminates all parallel kernels from the list Kernels[].CloseKernels[k] terminates the kernel k.CloseKernels[{k_1, k_2, ...}] terminates the kernels k_1, k_2, ...