I have a set of points $x_i \in \mathbb{R}^2$ and want to plot its convex hull with an additional condition. What I want to plot exactly is: \begin{align} \left\{\sum\limits_i \alpha_i x_i\middle| \sum\limits_i \alpha_i = 1, \ 0 \leq \alpha_i \leq \mu \right\} \end{align} How can I do that? I think it is not possible (in an easy way) in mathematica. I just need some pictures, so it is ok for me if I can only take a very small set.
2026-03-27 00:02:31.1774569751
Plotting some kind of convex hull
43 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in CONVEX-ANALYSIS
- Proving that: $||x|^{s/2}-|y|^{s/2}|\le 2|x-y|^{s/2}$
- Convex open sets of $\Bbb R^m$: are they MORE than connected by polygonal paths parallel to the axis?
- Show that this function is concave?
- In resticted domain , Applying the Cauchy-Schwarz's inequality
- Area covered by convex polygon centered at vertices of the unit square
- How does positive (semi)definiteness help with showing convexity of quadratic forms?
- Why does one of the following constraints define a convex set while another defines a non-convex set?
- Concave function - proof
- Sufficient condition for strict minimality in infinite-dimensional spaces
- compact convex sets
Related Questions in GRAPHING-FUNCTIONS
- Lower bound of bounded functions.
- Do Irrational Conjugates always come in pairs?
- Graph rotation: explanation of equation
- Plot function y = tan(yx)
- Sketching a lemniscate curve with a max function?
- 3 points on a graph
- show $f(x)=f^{-1}(x)=x-\ln(e^x-1)$
- What is this method of sketching a third degree curve?
- Getting a sense of $f(x) = x (\log x)^6$
- Can I describe an arbitrary graph?
Related Questions in CONVEX-HULLS
- Is every finite descending sequence in [0,1] in convex hull of certain points?
- What exactly the Ellipsoid method does?
- Why is the determinant test attractive for the Convex Hull algorithm?
- Unit-length 2D curve segment with maximal width along all directions
- A point in a convex hull
- Why is Sklansky algorithm convex hull wrong
- Proving this convex hull lemma
- Why do we check $n^2 - n$ pairs of points in SlowConvexHull algorithm?
- Convex combination of $2^n$ vectors from cartesian products of half-spaces
- There exists $\vec{w}$ such that $\vec{\beta}_j\cdot \vec{w}>0$ $\iff$ the origin is not in the convex hull of $\vec{\beta}_j$ and $\vec{e}_i$.
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Let $x_i = (u_i,v_i)$. The desired set of points is the set of the $(u,v) \in \mathbb{R}^2$ that satisfy
$$\begin{align} u &= \sum_i \alpha_i u_i \\ v &= \sum_i \alpha_i v_i \\ 1 &= \sum_i \alpha_i \\ 0 &\leq \alpha_i \leq \mu \enspace. \end{align}$$
Splitting each equality into two inequalities, we get a set of inequalities in $u$, $v$, and the $\alpha_i$'s. If we eliminate the $\alpha_i$'s with, say, Fourier-Motzkin elimination, we obtain constraints on $u$ and $v$ that describe the desired set.
As an example, suppose we are given $$ x_0 = (0,0), x_1 = (1,0), x_2 = (0,1), x_3 = (1,1) \enspace,$$ and $\mu=0.5$. Noting that we can do without $\alpha_0$ if we replace $\sum_i \alpha_i = 1$ with $\alpha_1 + \alpha_2 + \alpha_3 \leq 1$, the initial inequalities are:
$$\begin{align} u &\leq \alpha_1 + \alpha_3 \\ u &\geq \alpha_1 + \alpha_3 \\ v &\leq \alpha_2 + \alpha_3 \\ v &\geq \alpha_2 + \alpha_3 \\ 1 &\geq \alpha_1 + \alpha_2 + \alpha_3 \\ 0 &\leq \alpha_1 \leq \mu \\ 0 &\leq \alpha_2 \leq \mu \\ 0 &\leq \alpha_3 \leq \mu \end{align}$$ For $\mu=0.5$, elimination produces $$\begin{align} 0 \leq u &\leq 1 \\ 0 \leq v &\leq 1 \\ u - v &\leq 0.5 \\ v - u &\leq 0.5 \\ u + v &\leq 1.5 \enspace. \end{align}$$ These inequalities delimit a pentagon, which is easily seen to be the desired set. As expected, the pentagon is entirely contained in the convex hull of $x_0,x_1,x_2,x_3$.