GCD
(Built-in Mathematica Symbol) GCD[n_1, n_2, ...] gives the greatest common divisor of the n_i.
LCM
(Built-in Mathematica Symbol) LCM[n_1, n_2, ...] gives the least common multiple of the n_i.
RandomSample[{e_1, e_2, ...}, n] gives a pseudorandom sample of n of the e_i.RandomSample[{w_1, w_2, ...} -> {e_1, e_2, ...}, n] gives a pseudorandom sample of n of the e_i ...
TransferFunctionZeros[tf] gives a matrix of roots of the numerators in the TransferFunctionModel object tf.
When you define a complicated function, you will often want to let some of the arguments of the function be "optional". If you do not give those arguments explicitly, you ...
LiftingFilterData[...] represents lifting-filter data used to compute forward and inverse lifting wavelet transforms.
There are many situations where one wants to find a formula that best fits a given set of data. One way to do this in Mathematica is to use Fit. Basic linear fitting. Here is ...
ClosenessCentrality[g] gives a list of closeness centralities for the vertices in the graph g.
EigenvectorCentrality[g] gives a list of eigenvector centralities for the vertices in the graph g.EigenvectorCentrality[g, "In"] gives a list of in-centralities for a ...
GraphPlot[{v i 1 -> v j 1, v i 2 -> v j 2, ...}] generates a plot of the graph in which vertex v_ik is connected to vertex v_jk.GraphPlot[{{v i 1 -> v j 1, lbl_1}, ...}] ...