All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
A measured polygon (Posted on 2025-05-22) Difficulty: 3 of 5
Compute the smallest integer n for which it is possible to draw an n-gon whose vertex angles all measure 167 or 174.

No Solution Yet Submitted by Danish Ahmed Khan    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution solution | Comment 1 of 2
The lowest n is 32, and it seems there are only five possibilities altogether as shown in the table below.

The n = 32 case is achieved with 24 167-degree angles and 8 174-degree angles. It's assumed that an appropriate set of lengths of sides is possible so the figure will be a closed polygon.

The program seeks ways of achieving a total of 180*n - 360 total degrees using multiples of 167 and/or 174.

for n=5:10000
  goal=180*n-360;
  have=167*n;
  diff=goal-have;
  if mod(diff,7)==0
    need=diff/7;
    if need<=n && need>=0
      fprintf('%5d%5d%5d\n',n,n-need,need)
    end
  end
end
            angles
 sides    167° 174°
   32      24    8
   39      18   21
   46      12   34
   53       6   47
   60       0   60


  Posted by Charlie on 2025-05-22 09:15:22
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (7)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2025 by Animus Pactum Consulting. All rights reserved. Privacy Information