ConceptComplete

Convex Geometry - Core Definitions

Convex geometry studies convex sets and their propertiesβ€”fundamental objects appearing throughout mathematics, optimization, economics, and physics.

DefinitionConvex Set

A set CβŠ†RnC \subseteq \mathbb{R}^n is convex if for any two points x,y∈Cx, y \in C and any λ∈[0,1]\lambda \in [0,1]:

Ξ»x+(1βˆ’Ξ»)y∈C\lambda x + (1-\lambda)y \in C

Equivalently, CC contains all line segments between its points. Examples include balls, simplices, halfspaces, and polyhedra.

The convex hull conv(S)\text{conv}(S) of a set SS is the smallest convex set containing SS. It equals the set of all convex combinations:

conv(S)={βˆ‘i=1kΞ»ixi:xi∈S,Ξ»iβ‰₯0,βˆ‘Ξ»i=1}\text{conv}(S) = \left\{ \sum_{i=1}^k \lambda_i x_i : x_i \in S, \lambda_i \geq 0, \sum \lambda_i = 1 \right\}
DefinitionExtreme Points

A point x∈Cx \in C is an extreme point if it cannot be written as a non-trivial convex combination of other points in CC. Equivalently, xx is not an interior point of any line segment in CC.

The set of extreme points is denoted ext(C)\text{ext}(C). For a polytope (convex hull of finitely many points), extreme points are the vertices.

ExamplePolytopes

A polytope is the convex hull of finitely many points. In R2\mathbb{R}^2, polytopes are polygons. In R3\mathbb{R}^3, they're polyhedra.

Standard examples:

  • Simplex: Convex hull of n+1n+1 affinely independent points in Rn\mathbb{R}^n
  • Cube: [βˆ’1,1]n[-1,1]^n
  • Cross-polytope: Convex hull of Β±ei\pm e_i (standard basis vectors)
DefinitionSupporting Hyperplane

A hyperplane HH supports convex set CC at point x∈Cx \in C if CC lies entirely in one closed halfspace determined by HH, and x∈Hx \in H.

Every boundary point of a closed convex set has a supporting hyperplane (separation theorem consequence).

Remark

Convex geometry underlies optimization theory. Linear programming minimizes linear functions over convex polyhedra. Convex optimization exploits convexity to guarantee global optima and efficient algorithms. Applications span engineering, finance, machine learning, and operations research.

Convex sets exhibit remarkable regularity. Projections of convex sets are convex, intersections preserve convexity, and Minkowski sums (pointwise addition) of convex sets are convex. This stability under operations makes convex geometry tractable.