FindVertexCover[g] finds a vertex cover of the graph g with a minimum number of vertices.
GraphDistance[g, s, t] gives the distance from source vertex s to target vertex t in the graph g.GraphDistance[g, s] gives the distance from s to all vertices of the graph g.
LinearProgramming[c, m, b] finds a vector x that minimizes the quantity c.x subject to the constraints m.x >= b and x >= 0. LinearProgramming[c, m, {{b_1, s_1}, {b_2, s_2}, ...
NormFunction is an option for functions such as FindFit and NDSolve which gives a function to be minimized in generating results.
Greater
(Built-in Mathematica Symbol) x > y yields True if x is determined to be greater than y. x_1 > x_2 > x_3 yields True if the x_i form a strictly decreasing sequence.
Less
(Built-in Mathematica Symbol) x < y yields True if x is determined to be less than y. x_1 < x_2 < x_3 yields True if the x_i form a strictly increasing sequence.
Share
(Built-in Mathematica Symbol) Share[expr] changes the way expr is stored internally, to try and minimize the amount of memory used. Share[] tries to minimize the memory used to store all expressions.
GumbelDistribution[\[Alpha], \[Beta]] represents a Gumbel distribution with location parameter \[Alpha] and scale parameter \[Beta].
Mathematica does operations like numerical integration very differently from the way it does their symbolic counterparts. When you do a symbolic integral, Mathematica takes ...
ExtremeValueDistribution[\[Alpha], \[Beta]] represents an extreme value distribution with location parameter \[Alpha] and scale parameter \[Beta].