Download Check List for Making Polygons

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts
no text concepts found
Transcript
Math / Geometry Check Off Sheet in the
Computer Lab
Does your sprite / turtle draw all the regular Polygons from 3 to 10 sides?
Triangle, Square, Pentagon, Hexagon, Heptagon, Octagon, Nonagon, Decagon.
Which of these polygons have any parallel sides? _______________________.
Which of these polygons have all obtuse angles? _______________________.
Which of these polygons have all acute angles? _______________________.
Which of these polygons have right angles? _______________________.
What is the perimeter of all the polygons you made?
Triangle _______________________.
Square _______________________.
Pentagon _______________________.
Hexagon _______________________.
Heptagon _______________________.
Octagon _______________________.
Nonagon _______________________.
Decagon _______________________.
What is the area of the square you made? _______________________.
What would be the code to make a polygon that has twice the perimeter of one you
already made?
___________________________________________________
What would be the code to make a polygon that has twice the area of the square
you made?
___________________________________________________
Is it possible to know exactly the area of a polygon you made other than a square?
___________________________________________________
Code Vocabulary in MicroWorlds
Logo Language
FD # = Go forward that many
turtle steps.
RT # = Turns the turtle right using degrees.
Home = Sends the turtle to coordinates 0, 0.
Repeat # [
] Repeats what’s ever in the
bracket the number of times written.
PD = Turtle puts down its pen.
PU = Turtle picks up pen and no longer draws.
Clean = Clear all graphics the turtle has drawn.
Example, this code makes a square:
PD Repeat 4[FD 100
RT 90]
Coding Blocks that will let the
Sprite Draw in
Scratch
In Motion get the
These blocks
make a square
Move and Turn blocks.
In Control get the
When _____ Key Pressed block and the
Repeat block.
In Pen get the Pen Down block, the
Pen Up block, Clear block, the Set Pen
Color to ___ block, and maybe Set Pen
Size To __ block.