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

Home > Just Math
Polygon Perimeter (Posted on 2024-02-19) Difficulty: 3 of 5
The curve C has equation 2x2 + 2xy + 5y2 = 20.

The points on C for which both the x and y coordinates are integers are the vertices of a convex polygon P.

Find the exact perimeter of polygon P.

No Solution Yet Submitted by Danish Ahmed Khan    
No Rating

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution finding the perimeter | Comment 2 of 4 |
A graph shows an ellipse contained within -4<x<4 and -3<y<3, providing the search area.

fimplicit(@(x,y)2*x.^2+2*x.*y+5*y.^2-20);
grid
for x=-4:4
  for y=-3:3
    if 2*x^2+2*x*y+5*y^2==20
      disp([x y])
    end
  end
end

>> polygonPerimeter
    -2     2
     0    -2
     0     2
     2    -2
     
(-2,2) to (0,2) and (0,-2) to (2,-2) provide two segments of length 2.

(-2,2) to (0,-2) and (0,2) to (2,-2) provide two segments of length sqrt(20).

The perimeter is 2*(2 + sqrt(20)) =~  12.9442719099992.

  Posted by Charlie on 2024-02-19 09:04:33
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 (10)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

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