Problem 44367. Inscribed Pentagon? 2

Your function will be provided with the five vertices of a pentagon (p) as well as the center point (cp) and radius (r) of a circle. The pentagon may or may not be centered on the circle. The function should return one of the following values:

 -1: the pentagon is not centered on the circle (within 5% of r)^
  0: the pentagon is completely enclosed within the circle but is not inscribed
  1: the pentagon is inscribed in the circle (within ±0.02)
  2: the vertices of the pentagon extend beyond the circle

Points will be rounded to the nearest hundredth. See the test cases for examples. (There will not be a case where some vertices are within the circle and others without.)

^ Due to the asymmetric nature of the pentagon, its centroid does not coincide with center of its inscribing circle, hence the ±5% tolerance window.

Solution Stats

36.75% Correct | 63.25% Incorrect
Last Solution submitted on Sep 22, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers82

Suggested Problems

More from this Author139

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!