What is the perimeter of the square?
The perimeter is the total length of all the sides of the shape added together.
Add up the lengths of the sides:
\qquad\text{PERIMETER} =
\pink{S} + \blue{S} + \purple{S} + \green{S}
\qquad\text{PERIMETER} = S * 4\text{ UNIT}
What is the perimeter of the rectangle?
The perimeter is the total length of all the sides of the shape added together.
Add up the lengths of the sides:
\qquad\text{PERIMETER} =
\pink{W} + \blue{L} + \purple{W} + \green{L}
\qquad\text{PERIMETER} = L * 2 + W * 2\text{ UNIT}
What is the perimeter of the triangle?
The perimeter is the total length of all the sides of the shape added together.
Add up the lengths of the sides:
\qquad\text{PERIMETER} =
\pink{B} + \blue{C} + \green{A}
\qquad\text{PERIMETER} = A + B + C\text{ UNIT}
What is the perimeter of the regular POLYGON?
The perimeter is the total length of all the sides of the shape added together.
All of the sides of a regular POLYGON are the same length.
Since there are SIDES
sides
that are all S
plural_form(UNIT_TEXT, S) long, we can multiply:
\qquad\text{PERIMETER} =
\blue{SIDES} \times \green{S}
\qquad\text{PERIMETER} = S * SIDES\text{ UNIT}
What is the perimeter of the shape? Each square in the grid is
a 1 \times 1
UNIT_TEXT square.
The perimeter is the total length of all the sides of the shape added together.
Add up the lengths of all SHAPE.numSides sides.
\qquad
_.map(SHAPE.sides, function(v) {
return v.length;
}).join("+")
= \text{ ?}
The perimeter is SHAPE.perimeter
plural_form(UNIT_TEXT, SHAPE.perimeter).