In the late 1960’s, Seymour Papert and a team at MIT developed “Turtle Graphics” and the Logo Programming Language to teach kids how to program a computer. A programmable “turtle” was placed on the floor and given instructions. To use Logo for free on-line, register at:
http://www.logointerpreter.com
Select “Editor” and enter the following program as new logo commands. Execute it (click the rocket blasting off).
repeat 24 [
forward 30
left 15
]
To dray a "regular polygon," the Turtle moves the same amount for each side and turns the same amount each time. When the Turtle reaches its starting point, it has turned completely around. That is an extremely important principle in geometry:
The sum of the exterior angles of a regular polygon is 360°.
Ah, but problem asks you to find the number of sides (that is also the number of angles) when you are given the interior angle.
Let n = the number of sides; also the number of angles
Now, realize that an interior angle = (180° - the exterior angle) (that is, they are supplementary).
Sum of interior angles = n*(a single interior angle)
= n*(180˜ - a single exterior angle)
= 180°n - n*(a single exterior angle)
= 180°n - 360°
Sum of interior angles = 180°(n-2)
This is really easy !
For
n*165° = 180°(n-2) [Sum of interior angles = n*(a single interior angle)]
165n = 180n - 360
-15n = -360
n = 24
PLZ contact me for on-line tutoring.
Janet G.
10/15/16