All Topics  
Convex hull

 

   Email Print
   Bookmark   Link






 

Convex hull



 
 
In mathematics
Mathematics

Mathematics is the study of quantity, structure, space, change, and related topics of pattern and form. Mathematicians seek out patterns whether found in numbers, space, natural science, computers, imaginary abstractions, or elsewhere....
, the convex hull or convex envelope for a set of points X in a real
Real

Real most often refers to reality, the state of things as they actually exist.Real may also refer to:...
 vector space
Vector space

File:Vector addition ans scaling.pngA vector space is a mathematical structure formed by a collection of vectors: objects that may be Vector addition together and Scalar multiplication by numbers, called scalar s in this context....
 V is the minimal convex set
Convex set

In Euclidean space, an object is convex if for every pair of points within the object, every point on the straight line segment that joins them is also within the object....
 containing X.

In computational geometry
Computational geometry

Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems are also considered to be part of computational geometry....
, it is common to use the term "convex hull" for the boundary
Boundary (topology)

In topology, the boundary of a subset S of a topological space X is the set of points which can be approached both from S and from the outside of S....
 of the minimal convex set containing a given non-empty finite set of points in the plane
Plane (mathematics)

In mathematics, a plane is a curvature surface. Planes can arise as subspaces of some higher dimensional space, as with the walls of a room, or they may enjoy an independent existence in their own right, as in the setting of Euclidean geometry....
. Unless the points are collinear, the convex hull in this sense is a simple closed polygonal chain.

planar objects, i.e., lying in the plane, the convex hull may be easily visualized by imagining an elastic band stretched open to encompass the given object; when released, it will assume the shape of the required convex hull.

It may seem natural to generalise this picture to higher dimensions by imagining the objects enveloped in a sort of idealised unpressurised elastic membrane or balloon under tension.






Discussion
Ask a question about 'Convex hull'
Start a new discussion about 'Convex hull'
Answer questions from other users
Full Discussion Forum



Recent Posts









Encyclopedia


In mathematics
Mathematics

Mathematics is the study of quantity, structure, space, change, and related topics of pattern and form. Mathematicians seek out patterns whether found in numbers, space, natural science, computers, imaginary abstractions, or elsewhere....
, the convex hull or convex envelope for a set of points X in a real
Real

Real most often refers to reality, the state of things as they actually exist.Real may also refer to:...
 vector space
Vector space

File:Vector addition ans scaling.pngA vector space is a mathematical structure formed by a collection of vectors: objects that may be Vector addition together and Scalar multiplication by numbers, called scalar s in this context....
 V is the minimal convex set
Convex set

In Euclidean space, an object is convex if for every pair of points within the object, every point on the straight line segment that joins them is also within the object....
 containing X.

In computational geometry
Computational geometry

Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems are also considered to be part of computational geometry....
, it is common to use the term "convex hull" for the boundary
Boundary (topology)

In topology, the boundary of a subset S of a topological space X is the set of points which can be approached both from S and from the outside of S....
 of the minimal convex set containing a given non-empty finite set of points in the plane
Plane (mathematics)

In mathematics, a plane is a curvature surface. Planes can arise as subspaces of some higher dimensional space, as with the walls of a room, or they may enjoy an independent existence in their own right, as in the setting of Euclidean geometry....
. Unless the points are collinear, the convex hull in this sense is a simple closed polygonal chain.

Intuitive picture

For planar objects, i.e., lying in the plane, the convex hull may be easily visualized by imagining an elastic band stretched open to encompass the given object; when released, it will assume the shape of the required convex hull.

It may seem natural to generalise this picture to higher dimensions by imagining the objects enveloped in a sort of idealised unpressurised elastic membrane or balloon under tension. However, the equilibrium (minimum-energy) surface in this case may not be the convex hull — parts of the resulting surface may have negative curvature
Curvature

In mathematics, curvature refers to any of a number of loosely related concepts in different areas of geometry. Intuitively, curvature is the amount by which a geometric object deviates from being flat, or straight in the case of a line , but this is defined in different ways depending on the context....
, like a saddle surface
Saddle surface

A saddle surface is a smooth surface containing one or more saddle points.The term derives from the peculiar shape of historical horse saddles, which curve both up and down....
 (see article about minimal surface
Minimal surface

In mathematics, a minimal surface is a surface with a mean curvature of zero.These include, but are not limited to, surfaces of minimum area subject to various constraints....
s for examples). For the case of points in 3-dimensional space, if a rigid wire is first placed between each pair of points, then the balloon will spring back under tension to take the form of the convex hull of the points.

Existence of the convex hull


To show that the convex hull of a set X in a real vector space V exists, notice that X is contained in at least one convex set (the whole space V, for example), and any intersection of convex sets containing X is also a convex set containing X. It is then clear that the convex hull is the intersection of all convex sets containing X. This can be used as an alternative definition of the convex hull.

More directly, the convex hull of X can be described constructively as the set of convex combination
Convex combination

A convex combination is a linear combination of point where all coefficients are non-negative and sum up to 1. All possible convex combinations will be within the convex hull of the given points....
s of finite subset
Subset

In mathematics, especially in set theory, a Set A is a subset of a set B if A is "contained" inside B. Notice that A and B may coincide....
s of points from X: that is, the set of points of the form , where n is an arbitrary natural number
Natural number

In mathematics, a natural number can mean either an element of the Set = *n = = ? = ? ...
, the numbers are non-negative and sum to 1, and the points are in X. It is simple to check that this set satisfies either of the two definitions above. So the convex hull of set X is:

In fact, if X is a subset of an N-dimensional vector space, convex combinations of at most N + 1 points are sufficient in the definition above. This is equivalent to saying that the convex hull of X is the union of all simplex
Simplex

In geometry, a simplex or n-simplex is an n-dimensional analogue of a triangle. Specifically, a simplex is the convex hull of a set of affine transformation Point s in some Euclidean space of dimension n or higher ....
es with at most N+1 vertices from X. This is known as Carathéodory's theorem
Carathéodory's theorem (convex hull)

In convex geometry Carath?odory's theorem states that if a point x of real numberd lies in the convex hull of a set P, there is a subset P′ of P consisting of d+1 or fewer points such that x lies in the convex hull of P′....
.

The convex hull is defined for any kind of objects made up of points in a vector space, which may have any number of dimensions, including infinite-dimensional vector spaces. The convex hull of finite sets of points and other geometrical objects in a two-dimensional plane or three-dimensional space are special cases of practical importance.

Computation of convex hulls


In computational geometry
Computational geometry

Computational geometry is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry. Some purely geometrical problems arise out of the study of computational geometric algorithms, and such problems are also considered to be part of computational geometry....
, numerous algorithms are proposed for computing the convex hull of a finite set of points, with various computational complexities
Computational Complexity

Computational Complexity may refer to:*Computational complexity theory*Computational Complexity ...
.

Computing the convex hull means that a non-ambiguous and efficient representation
Data structure

A data structure in computer science is a way of storing data in a computer so that it can be used efficiently. It is an organization of mathematical and logical concepts of data....
 of the required convex shape is constructed. The complexity of the corresponding algorithms is usually estimated in terms of n, the number of input points, and h, the number of points on the convex hull.

Relations to other geometric structures


The Delaunay triangulation
Delaunay triangulation

In mathematics, and computational geometry, a Delaunay triangulation for a set P of points in the plane is a triangulation DT such that no point in P is inside the Circumcircle#Circumcircles_of_triangles of any triangle in DT....
 of a point set and its dual, the Voronoi Diagram
Voronoi diagram

In mathematics, a Voronoi diagram, named after Georgy Voronoy, also called a Voronoi tessellation, a Voronoi decomposition, or a Dirichlet tessellation , is a special kind of decomposition of a metric space determined by distances to a specified discrete set of objects in the space, e.g., by a discrete set of points....
, are mathematically related to convex hulls: the Delaunay triangulation of a point set in Rn can be viewed as the projection of a convex hull in Rn+1 (Brown 1979).

Applications


The problem of finding convex hulls finds its practical applications in pattern recognition
Pattern recognition

Pattern recognition is a sub-topic of machine learning. It is "the act of taking in raw data and taking an action based on the Category of the data"....
, image processing
Image processing

In electrical engineering and computer science, image processing is any form of signal processing for which the input is an , such as photographs or video frame; the output of image processing can be either an image or a set of characteristics or parameters related to the image....
, statistics
Statistics

Statistics is a Mathematics pertaining to the collection, analysis, interpretation or explanation, and presentation of data. It also provides tools for prediction and forecasting based on data....
, GIS and static code analysis
Static code analysis

Static code analysis is the Program analysis that is performed without actually executing programs built from that software . In most cases the analysis is performed on some version of the source code and in the other cases some form of the object code....
 by abstract interpretation
Abstract interpretation

In computer science, abstract interpretation is a theory of sound approximation of the semantics of computer programs, based on monotonic functions over ordered sets, especially lattice s....
. It also serves as a tool, a building block for a number of other computational-geometric algorithms such as the rotating calipers
Rotating calipers

Rotating calipers is a computational algorithm developed by Michael Shamos in 1978 for determining all antipodal point pairs of points and vertices on a convex polygon or convex hull....
 method for computing the width and diameter
Diameter

In geometry, a diameter of a circle is any straight line segment that passes through the center of the circle and whose endpoints are on the circle....
 of a point set.

See also


  • Holomorphically convex hull
    Holomorphically convex hull

    In mathematics, more precisely in complex analysis, the holomorphically convex hull of a given compact set in the n-dimensional complex number space Cn is defined as follows....
  • Orthogonal convex hull
    Orthogonal convex hull

    In Euclidean geometry, a set is defined to be orthogonally convex if, for every line L that is parallel to one of the axes of the Cartesian coordinate system, the intersection of K with L is empty, a point, or a single interval....
  • Affine hull
    Affine hull

    In mathematics, the affine hull of a set S in Euclidean space Rn is the smallest affine set containing S, or equivalently, the intersection of all affine sets containing S....
  • Linear hull


External links

  • by Eric W. Weisstein
    Eric W. Weisstein

    Eric W. Weisstein is an encyclopedist who created and maintains MathWorld and Eric Weisstein's World of Science . He currently works for Wolfram Research, Inc....
    , Wolfram Demonstrations Project
    Wolfram Demonstrations Project

    The Wolfram Demonstrations Project is a website developed by Wolfram Research, whose stated goal is to bring computational exploration to the widest possible audience....
    , 2007.
  • - check your implementation.