Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
3

Computing the volume of a polytope that is not full-dimensional

asked 11 years ago

Samsa gravatar image

Let us assume we are given a polytope in Rd which is k-dimensional. How can we compute its k-dimensional volume in Sage?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 5 years ago

jipilab gravatar image

There is a simple way to do so directly in Sage:

sage: p = polytopes.permutahedron(4); p
A 3-dimensional polyhedron in ZZ^4 defined as the convex hull of 24 vertices

Naturally, it is lower dimensional, so its volume is zero:

sage: p.volume()
0

But, changing the measure to 'induced', we can directly compute the Lebesgue measure inside of the affine hull, without doing any transformation:

sage: p.volume(measure='induced')
32

The .volume method can use different algorithms and other measures (for example for lattice polytopes) whose performance may vary, you can check the accessible algorithms by typing p.volume? and read the documentation for more details.

Preview: (hide)
link
1

answered 11 years ago

slelievre gravatar image

I would do the following:

  1. Translate the polytope to have one vertex at the origin. This way it lives in a k-dimensional vector subspace, not only affine subspace.

  2. Find an orthonormal basis of this subspace.

  3. Express the polytope in that basis.

  4. Now work in Rk and find the volume of the polytope.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 867 times

Last updated: Aug 27 '19