Notebook
00:06
12 Apr 2026

The Four-Shape Decision Tree

Welcome! Today we're tackling The Four-Shape Decision Tree — the systematic method that turns your distance calculations into a definitive answer.

You can now compute all six distances for any quadrilateral.

But what do the numbers mean?

Here's the problem:

What you observeCould be...
All sides equalSquare OR Rhombuseither!
Opposite sides equalRectangle OR Parallelogrameither!

The numbers alone do not tell you — you need a systematic decision process.

In this section, you will learn the decision tree that converts six distance values into a definitive classification.

Key insight: The diagonal comparison is always the tiebreaker.

1. The side-equality checks: all equal vs opposite equal

-15-10-5510155-50ABCDQuadrilateral 1ABCDQuadrilateral 26.006.006.006.008.005.008.005.00

We start with the first level of the decision tree: checking the sides.

There are two possible outcomes:

  • All four sides are equal
  • Only opposite sides are equal

This first check narrows the classification from four shapes down to two.

📋 Given Info

After computing all four side-lengths, you compare them. There are two important outcomes:

  1. All four sides are equal: AB=BC=CD=DAAB = BC = CD = DA

    • Shape is either a square or a rhombus
  2. Opposite sides are equal but not all four: AB=CDAB = CD and BC=DABC = DA, but ABBCAB \neq BC

    • Shape is either a rectangle or a parallelogram

This single comparison splits the four shapes into two groups of two.

✍️ Question

Your Turn 🤔

Two quadrilaterals have been computed:

Quadrilateral 1: AB=6,BC=6,CD=6,DA=6AB = 6, BC = 6, CD = 6, DA = 6

Quadrilateral 2: AB=8,BC=5,CD=8,DA=5AB = 8, BC = 5, CD = 8, DA = 5

For each quadrilateral:

  1. What does the side comparison tell you?
  2. Which two shapes are still possible?

The decision tree starts with a side comparisonAlways check sides first:

Check 1: Are all four sides equal?Check this before anything else

If AB=BC=CD=DAAB = BC = CD = DAEqual sides alone doesn't tell you which shape (all the same number), the shape has equal sides.

But this does NOT automatically mean squareThis is a common mistake to avoid. A rhombus also has all four sides equal.

Side-by-side comparison: a square ABCD with all sides labeled 's' and a rhombus ABCD with all sides labeled 's', showing both have equal sides but different angles

So 'all sides equal' narrows it to: SQUARE or RHOMBUSNeed more information to decide which one.

✍️ MCQ
Choose one
Quadrilateral 1 has AB=6AB = 6, BC=6BC = 6, CD=6CD = 6, DA=6DA = 6. Based on the side comparison alone, which two shapes are still possible?
Let's annotate our quadrilateral to highlight the key question: when all sides are equal, how do we decide between a square and a rhombus?
-20-15-10-551015205-5-100ABCDQuadrilateral 1ABCDQuadrilateral 2All sides = 6 → SQUARE or RHOMBUS?6.006.006.006.008.005.008.005.00

Check 2: If not all equal, are opposite sides equal?

If AB=CDAB = CD and BC=DABC = DA (opposite pairs match, but the two pairs are different numbers), the shape has the parallelogram propertyOpposite sides come in matching pairs, but pairs differ in length.

Parallelogram ABCD with sides labeled: AB=CD=5cm, BC=DA=3cm, showing opposite sides equal but not all sides equal

But this does NOTBoth rectangle and parallelogram share this property automatically mean rectangle.

So 'opposite sides equal' narrows it to: RECTANGLE or PARALLELOGRAMYou need another check to tell them apart.

✍️ MCQ
Choose one
Quadrilateral 2 has AB=8AB = 8, BC=5BC = 5, CD=8CD = 8, DA=5DA = 5. Which two shapes could it be?
Now let's apply the same decision tree logic to Quadrilateral 2, where opposite sides are equal but not all four match. This annotation shows the second branch of our decision process.
-20-15-10-551015205-5-100ABCDQuadrilateral 1ABCDQuadrilateral 2All sides = 6 → SQUARE or RHOMBUS?Opposite sides equal (8 ≠ 5) → RECTANGLE or PARALLELOGRAM?6.006.006.006.008.005.008.005.00
✍️ MCQ
Choose one
Both quadrilaterals need a tiebreaker. What measurement will distinguish square from rhombus, and rectangle from parallelogram?

In both cases, you cannot make a final decision from sides alone. You MUSTThe only way to make the final decision proceed to the diagonal check.

This is the critical takeaway from our decision tree so far:

  • Quadrilateral 1 (all sides = 6): Could be square OR rhombus
  • Quadrilateral 2 (opposite sides equal: 8 and 5): Could be rectangle OR parallelogram

Sides narrow it down to two options, but sides alone neverThey only narrow it down to two possibilities give you the final answer.

✍️ Yes/No
Yes or No?
A quadrilateral has sides AB=7AB = 7, BC=7BC = 7, CD=7CD = 7, DA=7DA = 7. Can you definitively say it's a square based on this information alone?

⚠️ The common mistake:Don't jump to square just because sides are equal seeing 'all sides = 6' and immediately declaring 'It's a square!'

Look at the board — both shapes have all sides equal to 6Squares and rhombuses both have equal sides. But are they the same shape?

This skips the diagonal checkSkipping diagonals leads to wrong exam answers and will be wrong whenever the shape is actually a rhombus.

Side-by-side comparison: left shows a square with all sides 6 and equal diagonals marked 90 degrees; right shows a rhombus with all sides 6 but diagonals of different lengths, not 90 degrees
Correct approachWrong approach
All sides equal → Could be square OR rhombusMust check diagonals to pick between square and rhombus → Must check diagonalsAll sides equal → "It's a square!"

Remember: Equal sides narrow it down to two options, not one!Two options remain, not one

✍️ Yes/No
Yes or No?
A student sees a quadrilateral with AB=BC=CD=DA=5AB = BC = CD = DA = 5 and says: "All sides are equal, so it must be a square." Is this reasoning correct?

2. The diagonal tiebreaker: equal vs unequal diagonals

-20-15-10-551015205-5-100ABCDQuadrilateral 1ABCDQuadrilateral 2All sides = 6 → SQUARE or RHOMBUS?Opposite sides equal (8 ≠ 5) → RECTANGLE or PARALLELOGRAM?AC = √40BD = √56AC = √89BD = √896.006.006.006.008.005.008.005.00
📋 Given Info

The side check narrowed the possibilities to two shapes in each case. Now we bring in the diagonals as the tiebreaker.

  • Equal diagonals → push toward the 'higher' shape (square or rectangle)
  • Unequal diagonals → give the 'lower' shape (rhombus or parallelogram)

The Rule:

Side Check ResultDiagonals EqualDiagonals Unequal
All sides equalSQUARERHOMBUS
Opposite sides equalRECTANGLEPARALLELOGRAM
✍️ Question

Your turn! 🔍

Look at the two quadrilaterals with their diagonals now drawn:

QuadrilateralSide InformationDiagonal ACACDiagonal BDBD
Quadrilateral 1All sides = 640\sqrt{40}56\sqrt{56}
Quadrilateral 2Opposite sides 8 and 589\sqrt{89}89\sqrt{89}

Give the final classification for each quadrilateral with justification.

For each one, state: What is it? Why?

The diagonal comparison(The deciding factor between similar shapes) is the tiebreakerWhen sides don't give you the answer. Here is the complete decision tree:

Path 1: All sides equalAsk if diagonals are equal too

  • Diagonals equal → SQUAREEqual sides plus equal diagonals (all sides equal AND diagonals equal)
  • Diagonals NOT equal → RHOMBUSEqual sides but different diagonals (all sides equal but diagonals differ)
Side-by-side comparison: square with equal sides and equal diagonals labeled, rhombus with equal sides but unequal diagonals labeled
✍️ MCQ
Choose one
Quadrilateral 1 has all sides equal to 66, with diagonals AC=40AC = \sqrt{40} and BD=56BD = \sqrt{56}. What is it?

Path 2: Opposite sides equalNot all four sides, just opposite pairs (not all four)

  • Diagonals equal → RECTANGLEOpposite sides equal plus equal diagonals (opposite sides equal AND diagonals equal)
  • Diagonals NOT equal → PARALLELOGRAMOpposite sides equal but diagonals differ (opposite sides equal but diagonals differ)
✍️ MCQ
Choose one
Quadrilateral 2 has opposite sides 88 and 55, with diagonals AC=89AC = \sqrt{89} and BD=89BD = \sqrt{89}. What is it?
Rhombus with all sides labeled 6, diagonals drawn and labeled sqrt(40) and sqrt(56), showing unequal diagonal lengths

For Quadrilateral 1: sides are all 6First check — are all four sides the same? (Path 1Equal sides means Path 1). Diagonals: 40\sqrt{40} and 56\sqrt{56}. Since 405640 \neq 56, the diagonals are unequalThe tiebreaker — diagonals are different. Path 1 + unequal diagonals = RHOMBUSUnequal diagonals rules out square.

Rectangle with opposite sides labeled 8 and 5, both diagonals drawn and labeled sqrt(89), showing equal diagonal lengths

For Quadrilateral 2: opposite sides are 8 and 5Only opposite pairs match, not all four (Path 2Different from Path 1 — opposite sides equal). Diagonals: both 89\sqrt{89}. EqualDiagonals decide the final answer. Path 2 + equal diagonals = RECTANGLEEqual diagonals on Path 2 means rectangle.

✍️ MCQ
Choose one
If a quadrilateral has all sides equal to 1010 and diagonals of 200\sqrt{200} each, what shape is it?
Now that we've applied the decision tree, we can confirm our classifications. The green checkmarks show the final, verified answers.
-20-15-10-551015205-5-100ABCDQuadrilateral 1ABCDQuadrilateral 2AC = √40BD = √56AC = √89BD = √89RHOMBUS ✓RECTANGLE ✓6.006.006.006.008.005.008.005.00

The key insight: the diagonal check is never optionalAlways verify diagonals are equal.

'All sides equal' is necessary for a square but not sufficient — you ALSO need equal diagonalsEqual sides alone don't make a square.

Side-by-side comparison: rhombus vs square (both with equal sides, but different diagonals) and parallelogram vs rectangle (both with opposite sides equal, but different diagonals)

'Opposite sides equal' is necessary for a rectangle but not sufficient — you ALSO need equal diagonals.

3. Full classification from raw distance data

-10-551050JKLMJK² = 20KL² = 20LM² = 20MJ² = 20JL² = 40KM² = 40Quadrilateral JKLM4.474.474.474.47

You've learned the decision tree in pieces. Now it's time to test the full process.

Given six computed squared distances for a fresh quadrilateral, your task is to run the complete decision tree and arrive at the classification.

The Decision Tree:

StepCheckOutcome
1Check sidesAll equal → square/rhombus path
Opposite equal → rectangle/parallelogram path
2Check diagonalsEqual → square or rectangle
Unequal → rhombus or parallelogram
✍️ Question

Quadrilateral JKLM has the following squared distances:

SidesDiagonals
JK2=20JK^2 = 20JL2=40JL^2 = 40
KL2=20KL^2 = 20KM2=40KM^2 = 40
LM2=20LM^2 = 20
MJ2=20MJ^2 = 20

Run the decision tree and state the classification with full justification.

(Show both checks — don't skip straight to the answer!)

Let's run the decision tree step by step.

Step 1: Check the sides.

JK2=20JK^2 = 20, KL2=20KL^2 = 20, LM2=20LM^2 = 20, MJ2=20MJ^2 = 20.

All four squared sides are 20.We compare the squared values Since they are all equal, all four sides are equalEqual squares mean equal sides: JK=KL=LM=MJ=20=25JK = KL = LM = MJ = \sqrt{20} = 2\sqrt{5}.

Quadrilateral JKLM with vertices labeled, all four sides marked equal with tick marks, side length labeled as 2*sqrt(5)
✍️ MCQ
Choose one
Since all four sides of quadrilateral JKLMJKLM are equal, which path of the decision tree are we on?

This puts us on Path 1Equal sides lead to Path 1 of the decision tree: the shape is either a SQUARESquare or rhombus are the options or a RHOMBUSSquare or rhombus are the options. Diagonals determine the final answer

Now let's annotate the figure to highlight the key question: when all sides are equal, we still don't know if it's a square or rhombus. This is exactly where the decision tree comes in.
-10-5510155-50JKLMJK² = 20KL² = 20LM² = 20MJ² = 20JL² = 40KM² = 40Quadrilateral JKLMAll sides equal: √20 = 2√5 → SQUARE or RHOMBUS?4.474.474.474.47
✍️ MCQ
Choose one
All sides of JKLMJKLM are equal (20\sqrt{20}). What measurement will determine if it's a square or a rhombus?

Step 2: Check the diagonals.This step separates a rhombus from a square

JL2=40JL^2 = 40, KM2=40KM^2 = 40.

Quadrilateral JKLM with both diagonals JL and KM drawn, labeled with length sqrt(40) or 2sqrt(10), showing they are equal

Both squared diagonals are 40. Since they are equalEqual diagonals plus equal sides means square, the diagonals are equal: JL=KM=40=210JL = KM = \sqrt{40} = 2\sqrt{10}.

Now we add the final piece of evidence: the diagonals are equal. This confirms the shape is a square, not a rhombus.
-15-10-551015205-50JKLMJK² = 20KL² = 20LM² = 20MJ² = 20JL² = 40KM² = 40Quadrilateral JKLMDiagonals equal: √40 = 2√10All sides equal + Diagonals equal = SQUARE ✓4.474.474.474.47

Step 3: Combine.

All sides equal (from Step 1) + diagonals equal (from Step 2) = SQUAREThe only shape with yes at both checkpoints.

Look at the decision treeTwo checkpoints — first sides, then diagonals on the board — we followed the "Yes" path at both checkpointsBoth answers yes leads to square!

✍️ MCQ
Choose one
If the diagonals of JKLM had been JL2=40JL^2 = 40 and KM2=32KM^2 = 32 (unequal), what would the classification be?

If the diagonals had been UNEQUALSame sides but different diagonals changes everything (say JL2=40JL^2 = 40 but KM2=32KM^2 = 32), the answer would have been RHOMBUSSame sides, different diagonals, completely different answer instead.

The decision tree always has exactly two steps: sides, then diagonalsWhy you must never skip Step 2. Never skip Step 2.The diagonal check separates square from rhombus