Given convex 17-gon. What is the maximal count of triangles we can divide it if we draw all it's diagonals? (for 4-gon,answer is 4, for 5-gon answer is 11)
2026-03-26 17:32:49.1774546369
Maximal size of triangulation in 17-gon
947 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in GEOMETRY
- Point in, on or out of a circle
- Find all the triangles $ABC$ for which the perpendicular line to AB halves a line segment
- How to see line bundle on $\mathbb P^1$ intuitively?
- An underdetermined system derived for rotated coordinate system
- Asymptotes of hyperbola
- Finding the range of product of two distances.
- Constrain coordinates of a point into a circle
- Position of point with respect to hyperbola
- Length of Shadow from a lamp?
- Show that the asymptotes of an hyperbola are its tangents at infinity points
Related Questions in TRIANGULATION
- Simplicial complex underlying space homeomorphic to torus/klein bottle
- Is the following triangulation valid?
- Need help in understanding the argument in a proof of polygon triangulation
- Triangulation of the projective plane (number of points required)
- Fake torus triangulation in Munkres
- Is this a valid triangulation of Moebius strip?
- Prove that no set of $n$ points can be triangulated in more than $2^{n \choose 2}$ ways.
- Finding the location of point P
- Cutting a square into non-similar triangles
- Delaunay Triangulation in 3D
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?
Number of faces for general polygon
From your pentagon example I assume you mean faces, not neccessarily triangles.
Every point on an $n$-gon has $n-3$ adjacent diagonals. Each such diagonal intersects other diagonals, so if you want to compute the number of segments between such crossings, you'd compute
$$\sum_{i=1}^{n-3}i\,(n-2-i)+1=\frac{n^3-6n^2+17n-24}6$$
The idea is that you have one corner from where you are shooting diagonals, and another corner at which you are shooting the current diagonal. Then there are $i$ other corners to the left of that target corner, and $n-2-i$ corners to the right. Each combination of left and right will result in a diagonal, so the product gives the number of crossings. The number of segments is one more than that number of crossings.
Now you do this for every vertex, and you'll have counted every segment twice, once for each direction. Divide by two to correct for that, then add the outer boundary of the polygon, and you obtain the edge count
$$E=\frac n2\frac{n^3-6n^2+17n-24}6+n=\frac{n^4-6n^3+17n^2-12n}{12}$$
Then do the same for vertices. First count the inner crossings for a single point as
$$\sum_{i=1}^{n-3}i\,(n-2-i)=\frac{(n-1)\,(n-2)\,(n-3)}{6}$$
This will count every crossing four times: twice for each of the diagonals involved. Correcting for that and adding the corners, you get
$$V=\frac n4\frac{(n-1)\,(n-2)\,(n-3)}{6}+n=\frac{n^4-6n^3+11n^2+18n}{24}$$
Now you can use Euler's polyhedron formula to obtain the number of faces.
$$F=2-V+E=\frac{n^4-6n^3+23n^2-42n+48}{24}$$
One of these faces will be the outside of the polygon, so you get the final result
$$F-1=\frac{n^4-6n^3+23n^2-42n+24}{24}$$
Here are some numbers:
$$ \begin{array}{rr|rr|rr} n & F-1 & n & F-1 & n & F-1 \\\hline 3 & 1 & 13 & 781 & 23 & 9{,}086 \\ 4 & 4 & 14 & 1{,}079 & 24 & 10{,}879 \\ 5 & 11 & 15 & 1{,}456 & 25 & 12{,}926 \\ 6 & 25 & 16 & 1{,}925 & 26 & 15{,}250 \\ 7 & 50 & \mathbf{17} & \mathbf{2{,}500} & 27 & 17{,}875 \\ 8 & 91 & 18 & 3{,}196 & 28 & 20{,}826 \\ 9 & 154 & 19 & 4{,}029 & 29 & 24{,}129 \\ 10 & 246 & 20 & 5{,}016 & 30 & 27{,}811 \\ 11 & 375 & 21 & 6{,}175 & 31 & 31{,}900 \\ 12 & 550 & 22 & 7{,}525 & 32 & 36{,}425 \end{array} $$
This sequence can also be found on OEIS as A006522. The description states:
The latter is what you've been asking about, except for the distinction between triangles and non-triangular faces. So the answer to your question about the $17$-gon would be 2500. At least if the corners are in general position, so that never more than two diagonals intersect in any point.
Number of triangles for regular polygon
But perhaps your example of 11 triangles for the pentagon was simply wrong. If you really want to count only triangles, that count will depend on the shape of the polygon. Convexity alone does not fix the number. You are asking about the maximal number of triangles. Experiments suggest that a regular polygon might yield a maximal number of triangles, but I have no proof of that.
In any case, according to A062361, the number of triangles for the regular $17$-gon would be $1054$. There is no simple formula associated with that sequence, so I guess one has to “simply” count them. Doing so correctly without interference from limited precision rounding errors can be a bit tricky. For some non-regular polygons the number of triangles might be larger, but personally I doubt that.