Root
(Built-in Mathematica Symbol) Root[f, k] represents the exact k\[Null]^th root of the polynomial equation f[x] == 0. Root[{f, x_0}] represents the exact root of the general equation f[x] == 0 near x = ...
Mathematica contains the world's largest collection of number theoretic functions, many based on specially developed algorithms.
Mathematica transparently works with complex variables throughout, not only numerically, but also symbolically—often relying on original results to handle intricate branch ...
"Defining Functions" discusses how you can define functions in Mathematica. In a typical case, you would type in f[x_]=x^2 to define a function f. (Actually, the definitions ...
Some common operations on special functions. Most special functions have simpler forms when given certain specific arguments. Mathematica will automatically simplify special ...
SymbolicC supports working with C functions, as described in this section. First, you need to load the package. Now, you can create a C function with CFunction.
The built-in Mathematica iteration functions such as Table and Sum evaluate their arguments in a slightly special way. When evaluating an expression like Table[f,{i,i_max}], ...
The MathLink library provides a collection of C language functions for interacting with Mathematica via MathLink. These functions allow you not only to handle native C data ...
Many programs you write will involve operations that need to be iterated several times. Nest and NestList are powerful constructs for doing this. Applying functions of one ...