Convex Hull
Convex Hull
1. Intuitive Idea
The convex hull of a set of points is the smallest convex set that contains all those points.
🔹 Intuition:
Imagine driving nails at given points on a board and stretching a rubber band around them.
When released, the rubber band forms the convex hull.
2. Formal Definition
Let be any set.
The convex hull of , denoted by
is defined as the set of all convex combinations of points in .
That is,
3. Convex Combination (Key Concept)
A convex combination of points is a weighted average:
where:
📌 Convex combinations fill in all points between the given points.
4. Alternative Characterization
The convex hull of a set is:
The intersection of all convex sets that contain .
This shows:
-
Existence
-
Uniqueness
-
Minimality
5. Simple Examples
Example 1: Two Points in
Let
Then
which is the line segment joining and .
Example 2: Three Non-Collinear Points
If , then:
-
The convex hull is a filled triangle
-
Includes the interior, not just the edges
Example 3: Vertices of a Square
The convex hull of the four vertices is the entire square, including its interior.
6. Important Properties of Convex Hulls
(i) Convexity
(ii) Minimality
If is any convex set containing , then
(iii) Idempotence
(iv) Finite Representation (Carathéodory’s Theorem)
In , any point in the convex hull of can be written as a convex combination of at most points from .
7. Extreme Points and Convex Hull
-
Extreme points are points that cannot be written as convex combinations of others.
-
The convex hull is completely determined by its extreme points.
📌 In polygons and polyhedra:
-
Extreme points = vertices
8. Convex Hull in Machine Learning
(i) Classification
-
Linear classifiers separate convex hulls of data classes
(ii) Support Vector Machines
-
Decision boundary depends on extreme points (support vectors)
(iii) Clustering
-
Convex hulls help detect outliers
9. Convex Hull vs Convex Set
| Aspect | Convex Set | Convex Hull |
|---|---|---|
| Meaning | Already convex | Smallest convex set containing a given set |
| Construction | Given directly | Built using convex combinations |
| Example | Disk, cube | Hull of scattered points |
.png)
Comments
Post a Comment