Mathematica's unified architecture allows every aspect of Mathematica's interface to be controlled and specified programmatically using the symbolic constructs and functions ...
GraphDifference[g_1, g_2] gives the graph difference of the graphs g_1 and g_2.
GroupSetwiseStabilizer[group, {p_1, ..., p_n}] returns the subgroup of group for which the images of the points p_i are still in the list {p_1, ..., p_n}.
SetSharedVariable[s_1, s_2, ...] declares the symbols s_i as shared variables whose values are synchronized among all parallel kernels.
VertexDegree[g] gives the list of vertex degrees for all vertices in the graph g.VertexDegree[g, v] gives the vertex degree for the vertex v.
VertexInDegree[g] gives the list of vertex in-degrees for all vertices in the graph g.VertexInDegree[g, v] gives the vertex in-degree for the vertex v.
VertexOutDegree[g] gives the list of vertex out-degrees for all vertices in the graph g.VertexOutDegree[g, v] gives the vertex out-degree for the vertex v.
UndirectedEdge[u, v] or u \[UndirectedEdge] v represents an undirected edge of a graph with vertices u and v.
Patterns stand for classes of expressions. They contain pattern objects that represent sets of possible expressions. Pattern objects. When several pattern objects with the ...
Pattern matching makes possible some of the most succinct and elegant programs in the Mathematica language—immediately compressing large numbers of conditional cases into ...