Perimeter = Sum of All Side Lengths
Each side is a segment between consecutive vertices.
Procedure:
- List all sides (returning to start)
- Compute
for each side - Sum the results
The Closing-Side Rule
An
| Polygon | Sides to compute |
|---|---|
| Triangle |
|
| Quadrilateral |
|
| Pentagon |
Always return to the starting vertex.
The 3-4-5 Triangle: Distance in Action
Two axis-aligned sides use simple subtraction. The diagonal side requires the full distance formula.
Triangle Perimeter: Step by Step (1 of 2)
Given:
Sides:
Triangle Perimeter: Step by Step (2 of 2)
From previous slide:
Exact form preferred — use decimals only if requested.
Quadrilateral Perimeter: Side Lengths
Given:
| Side | Computation | Length |
|---|---|---|
Quadrilateral Perimeter: Final Sum
Side lengths:
Decimal approximation:
Check-In: Triangle Perimeter
Compute the perimeter of triangle
- List all three sides:
, , - Apply the distance formula to each
- Sum the three lengths
Leave your answer in exact form.
Check-In: Answer
Triangle
From Perimeter to Area
We computed perimeters by summing side lengths. Now we turn to area.
Three methods in this lesson:
- Axis-aligned rectangles — read dimensions directly
- Tilted rectangles — verify with slopes, measure with distance formula
- Triangles — base-height or bounding rectangle subtraction
Area of an Axis-Aligned Rectangle
If sides are parallel to the axes, read dimensions directly:
Example:
- Width:
· Height: - Area:
square units
Area of a Tilted Rectangle
When sides are not parallel to the axes:
- Verify it is a rectangle (adjacent slope product
) - Compute side lengths using the distance formula
- Multiply adjacent sides for the area
Tilted Rectangle: Worked Example
Given:
- Slopes:
, . Product: ✓ - Sides:
; - Area:
sq units
Triangle Area: Base-Height Method
Strategy: Choose a horizontal or vertical side as the base when available. The height is the perpendicular distance from the opposite vertex.
Example:
- Base
: horizontal, length - Height:
- Area
sq units
The Bounding Rectangle Method
Enclose the triangle in the smallest axis-aligned box. Subtract the three shaded corner triangles.
Bounding Rectangle: Full Calculation
Given:
| Corner | Legs | Area |
|---|---|---|
| At |
||
| At |
||
| At |
Quick Check: Bounding Box Logic
In the bounding rectangle method:
- What kind of triangles are the corner triangles?
- How do you find the lengths of their legs?
- Why do we subtract them from the box?
Quick Check: Answer
- They are always right triangles (aligned with the axes)
- Use coordinate differences (simple subtraction)
- We subtract them to isolate the target triangle's area
Key Takeaways
- Perimeter = sum of side lengths (distance formula for diagonals)
- Closing-side rule — always return to vertex 1 (
sides = distances) - Rectangle area — width
height (direct or via distance formula) - Triangle area — base-height or bounding rectangle subtraction
- Units — perimeter is linear; area is square
Summary of Watch-Outs
| Code | Error | Correct approach |
|---|---|---|
| M1 | Omit the closing side | List all |
| M2 | Subtract coordinates for diagonal sides | Use the full distance formula |
| M5 | Wrong unit type on the answer | Perimeter → linear; Area → square |
Coming Up: Lesson 2
Lesson 2 of 2 — HSG.GPE.B.7
Two powerful shortcuts:
- Coordinate area formula — triangle area directly from vertices
- Shoelace formula — area of any simple polygon
- Real-world applications — land surveying, irregular regions
Both produce exact answers efficiently.