From: Michael Orlitzky Date: Thu, 4 Jun 2015 16:51:34 +0000 (-0400) Subject: Add a cone lineality function. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=e1d68e35bb9d1408fe1ed74e15afde23b57e55fc;p=sage.d.git Add a cone lineality function. --- diff --git a/mjo/cone/cone.py b/mjo/cone/cone.py index 421fb3c..d777935 100644 --- a/mjo/cone/cone.py +++ b/mjo/cone/cone.py @@ -60,6 +60,75 @@ def project_span(K): +def lineality(K): + r""" + Compute the lineality of this cone. + + The lineality of a cone is the dimension of the largest linear + subspace contained in that cone. + + OUTPUT: + + A nonnegative integer; the dimension of the largest subspace + contained within this cone. + + REFERENCES: + + .. [Rockafellar] R.T. Rockafellar. Convex Analysis. Princeton + University Press, Princeton, 1970. + + EXAMPLES: + + The lineality of the nonnegative orthant is zero, since it clearly + contains no lines:: + + sage: K = Cone([(1,0,0), (0,1,0), (0,0,1)]) + sage: lineality(K) + 0 + + However, if we add another ray so that the entire `x`-axis belongs + to the cone, then the resulting cone will have lineality one:: + + sage: K = Cone([(1,0,0), (-1,0,0), (0,1,0), (0,0,1)]) + sage: lineality(K) + 1 + + If our cone is all of `\mathbb{R}^{2}`, then its lineality is equal + to the dimension of the ambient space (i.e. two):: + + sage: K = Cone([(1,0), (-1,0), (0,1), (0,-1)]) + sage: lineality(K) + 2 + + Per the definition, the lineality of the trivial cone in a trivial + space is zero:: + + sage: K = Cone([], lattice=ToricLattice(0)) + sage: lineality(K) + 0 + + TESTS: + + The lineality of a cone should be an integer between zero and the + dimension of the ambient space, inclusive:: + + sage: K = random_cone(max_dim = 10) + sage: l = lineality(K) + sage: l in ZZ + True + sage: (0 <= l) and (l <= K.lattice_dim()) + True + + A strictly cone should have lineality zero:: + + sage: K = random_cone(max_dim = 10, strictly_convex = True) + sage: lineality(K) + 0 + + """ + return K.linear_subspace().dimension() + + def discrete_complementarity_set(K): r""" Compute the discrete complementarity set of this cone.