Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

#3: Post edited by user avatar purplenanite‭ · 2024-09-28T19:05:12Z (19 days ago)
Included a second set of edits meant to demonstrate the dimensionality of the problem
  • How do I (efficiently) sample from the interior of a convex hull?
  • How do I (efficiently) sample from the interior of a convex polytope?
  • I wish to sample a "typical" point in the interior of a convex hull.
  • The volume is defined by vectors $\vec{G}_k$ and values $v_k$
  • such that $\forall k,(\vec{X} \cdot \vec{G}_k) > v_k$.
  • However, I also have an additional point $\vec{X}_j$ which is guaranteed to be on the edge of the convex hull normal to the vector $\vec{G}_j$ .
  • I currently have a few ideas:
  • I could use the Metropolis-Hastings algorithm, which would start with $\vec{X}_j$ and perturb it with a normal distribution, accepting the new point if it stays in the interior of the convex shape, until it "looks right"? But I don't know how many samples I would need to process until that occurs, nor the hyperparameters to use?
  • I could also try perturbing $\vec{X}_j$ in the direction of $\vec{G}_j$, which would push the point away from the edge of the shape?
  • I wish to sample a "typical" point in the interior of a convex polytope.
  • The volume is defined by vectors $\vec{G}_k$ and values $v_k$
  • such that $\forall k,(\vec{X} \cdot \vec{G}_k) > v_k$.
  • However, I also have an additional point $\vec{X}_j$ which is guaranteed to be on the boundary of the convex polytope normal to the vector $\vec{G}_j$ .
  • I currently have a few ideas:
  • I could use the Metropolis-Hastings algorithm, which would start with $\vec{X}_j$ and perturb it with a normal distribution, accepting the new point if it stays in the interior of the convex shape, until it "looks right"? But I don't know how many samples I would need to process until that occurs, nor the hyperparameters to use?
  • I could also try perturbing $\vec{X}_j$ in the direction of $\vec{G}_j$, which would push the point away from the boundary of the shape?
  • (This is also in a very high dimensional space, of about 100,000 - but the exact number isn't too important)
#2: Post edited by user avatar purplenanite‭ · 2024-09-27T02:28:51Z (21 days ago)
specified interior of shape
  • How do I (efficiently) sample from a convex hull?
  • How do I (efficiently) sample from the interior of a convex hull?
  • I wish to sample a "typical" point of a convex hull.
  • The volume is defined by vectors $\vec{G}_k$ and values $v_k$
  • such that $\forall k,(\vec{X} \cdot \vec{G}_k) > v_k$.
  • However, I also have an additional point $\vec{X}_j$ which is guaranteed to be on the edge of the convex hull normal to the vector $\vec{G}_j$ .
  • I currently have a few ideas:
  • I could use the Metropolis-Hastings algorithm, which would start with $\vec{X}_j$ and perturb it with a normal distribution, accepting the new point if it stays inside the convex shape, until it "looks right"? But I don't know how many samples I would need to process until that occurs, nor the hyperparameters to use?
  • I could also try perturbing $\vec{X}_j$ in the direction of $\vec{G}_j$, which would push the point away from the edge of the shape?
  • I wish to sample a "typical" point in the interior of a convex hull.
  • The volume is defined by vectors $\vec{G}_k$ and values $v_k$
  • such that $\forall k,(\vec{X} \cdot \vec{G}_k) > v_k$.
  • However, I also have an additional point $\vec{X}_j$ which is guaranteed to be on the edge of the convex hull normal to the vector $\vec{G}_j$ .
  • I currently have a few ideas:
  • I could use the Metropolis-Hastings algorithm, which would start with $\vec{X}_j$ and perturb it with a normal distribution, accepting the new point if it stays in the interior of the convex shape, until it "looks right"? But I don't know how many samples I would need to process until that occurs, nor the hyperparameters to use?
  • I could also try perturbing $\vec{X}_j$ in the direction of $\vec{G}_j$, which would push the point away from the edge of the shape?
#1: Initial revision by user avatar purplenanite‭ · 2024-09-26T18:07:46Z (21 days ago)
How do I (efficiently) sample from a convex hull?
I wish to sample a "typical" point of a convex hull.
The volume is defined by vectors $\vec{G}_k$ and values $v_k$
such that $\forall k,(\vec{X} \cdot \vec{G}_k) > v_k$.
However, I also have an additional point $\vec{X}_j$ which is guaranteed to be on the edge of the convex hull normal to the vector $\vec{G}_j$ .

I currently have a few ideas:

I could use the Metropolis-Hastings algorithm, which would start with $\vec{X}_j$ and perturb it with a normal distribution, accepting the new point if it stays inside the convex shape, until it "looks right"? But I don't know how many samples I would need to process until that occurs, nor the hyperparameters to use?

I could also try perturbing $\vec{X}_j$ in the direction of $\vec{G}_j$, which would push the point away from the edge of the shape?