Extend the Fibonacci Sequence: Field Daisy Petals

Sequences 7th-8th Grade
Problem
Different field daisy varieties have petal counts following the Fibonacci sequence: 13, 21, and 34 petals. How many petals do the next two varieties have?

What You Will Learn

  • How to identify and extend a Fibonacci sequence pattern
  • The recursive relationship where each term equals the sum of the two preceding terms
  • Pattern recognition techniques for sequence problems
  • How mathematical sequences appear naturally in biological systems
  • Verification methods to check sequence calculations

Visualizing the Pattern

Let's look at what we know and what we're trying to find:

Different field daisy varieties have petal counts following the Fibonacci sequence: 13, 21, and 34 petals. How many...

The key insight is recognizing that this follows the Fibonacci pattern: each new term is created by adding the two terms that come immediately before it.

Solution: Method 1 — Direct Application of Fibonacci Rule

The Fibonacci sequence has a simple rule: each term equals the sum of the two terms immediately before it. Let's apply this step by step.

Step 1 — Identify the pattern and known terms

We have three consecutive terms in a Fibonacci sequence: 13, 21, 34. We need to verify this follows the pattern and then extend it.

Check: 13 + 21 = 34

This confirms we have a valid Fibonacci sequence.

Step 2 — Find the fourth term

Using the Fibonacci rule, the fourth term equals the sum of the second and third terms:

Fourth term = 21 + 34 = 55

Step 3 — Find the fifth term

Similarly, the fifth term equals the sum of the third and fourth terms:

Fifth term = 34 + 55 = 89

Step 4 — State the complete extended sequence

Our extended sequence is: 13, 21, 34, 55, 89

Solution: Method 2 — Tabular Progression

Sometimes it helps to organize the work in a table format, especially when extending longer sequences or when you want to see the pattern clearly.

Step 1 — Set up a table with the known terms

PositionPetalsCalculation
Term 113Given
Term 221Given
Term 33413 + 21 = 34 (verify)

Step 2 — Extend the table using the Fibonacci rule

PositionPetalsCalculation
Term 113Given
Term 221Given
Term 33413 + 21 = 34
Term 45521 + 34 = 55
Term 58934 + 55 = 89

The table format makes it easy to see the progression and ensures we don't make arithmetic errors when working with larger numbers.

The next two daisy varieties have 55 and 89 petals respectively.

Verification

Let's verify our answer by checking that our extended sequence maintains the Fibonacci property throughout:

Term 1 + Term 2 = 13 + 21 = 34 ✓ (matches Term 3)
Term 2 + Term 3 = 21 + 34 = 55 ✓ (matches our Term 4)
Term 3 + Term 4 = 34 + 55 = 89 ✓ (matches our Term 5)

We can also verify by checking one more term ahead: 55 + 89 = 144, which would be the sixth term. Since all our additions work out correctly, we can be confident in our answer.

Common Pitfalls

Here are the mistakes students often make with Fibonacci sequence problems:

✗ Adding all the given terms instead of pairs
Incorrect: 13 + 21 + 34 = 68
This treats the problem as if you're finding a total, but Fibonacci sequences work by adding consecutive pairs, not all terms together.
✗ Using the wrong pairs for addition
Incorrect: 13 + 34 = 47 (skipping the middle term)
The Fibonacci rule specifically requires adding the two immediately preceding terms. You can't skip terms in between.
✗ Continuing the pattern with the wrong starting point
Incorrect: Starting with 21, 34 and finding 21 + 34 = 55, then 21 + 55 = 76
Once you find a new term (55), you must use it along with the previous term (34) to find the next one, not keep using the older terms.

The Math Beneath the Surface

The Fibonacci sequence follows a recursive relationship that can be expressed mathematically:

F(n) = F(n-1) + F(n-2)

Where F(n) represents the nth term in the sequence. This formula tells us that any term equals the sum of the two terms that come immediately before it.

For our daisy problem:

  • F(1) = 13 (first given term)
  • F(2) = 21 (second given term)
  • F(3) = 34 (third given term)
  • F(4) = F(3) + F(2) = 34 + 21 = 55
  • F(5) = F(4) + F(3) = 55 + 34 = 89

This recursive nature means that once you know any two consecutive terms in a Fibonacci sequence, you can generate all subsequent terms indefinitely.

This Pattern in the Natural World

The appearance of Fibonacci numbers in daisy petals isn't just a mathematical curiosity—it reflects deep patterns in biological growth:

  • Sunflower seed spirals: The number of clockwise and counterclockwise spirals are consecutive Fibonacci numbers
  • Pinecone scales: Arranged in Fibonacci spirals for optimal packing
  • Flower petals: Many flowers have 3, 5, 8, 13, 21, or 34 petals—all Fibonacci numbers
  • Tree branches: The branching patterns often follow Fibonacci ratios

These patterns emerge because Fibonacci arrangements provide optimal space utilization and structural efficiency in biological systems.

What If?

Test your understanding with these variations:

1
Different Starting Numbers
A rare orchid species has petal counts following a Fibonacci pattern. If three consecutive varieties have 8, 13, and 21 petals, how many petals do the next two varieties have?
Step 1 — Verify the pattern

Check: 8 + 13 = 21 ✓. This confirms a valid Fibonacci sequence.

Step 2 — Find the fourth term

Fourth term = 13 + 21 = 34

Step 3 — Find the fifth term

Fifth term = 21 + 34 = 55

Step 4 — Verify

Check: 13 + 21 = 34 and 21 + 34 = 55

Answer: 34 and 55 petals

2
Working Backwards
A botanist finds daisy varieties with 55 and 89 petals, knowing they are consecutive terms in the Fibonacci sequence. What were the petal counts of the two varieties that came immediately before the 55-petal variety?
Step 1 — Set up the relationship

If the sequence is ..., ?, 55, 89, then we need to work backwards.

Step 2 — Find the term before 55

Since previous term + 55 = 89, we have: previous term = 89 - 55 = 34

Step 3 — Find the term before 34

Since term before 34 + 34 = 55, we have: term before 34 = 55 - 34 = 21

Step 4 — Verify the sequence

Check: 21 + 34 = 55 and 34 + 55 = 89

Answer: 21 and 34 petals

3
Modified Fibonacci
A lily species follows the same addition pattern as Fibonacci, but starts differently. If three consecutive varieties have 7, 11, and 18 petals, how many petals do the next three varieties have?
Step 1 — Verify the pattern

Check: 7 + 11 = 18 ✓. Same rule, different starting numbers.

Step 2 — Find the fourth term

Fourth term = 11 + 18 = 29

Step 3 — Find the fifth term

Fifth term = 18 + 29 = 47

Step 4 — Find the sixth term

Sixth term = 29 + 47 = 76

Step 5 — Verify

Check all: 11 + 18 = 29, 18 + 29 = 47, 29 + 47 = 76

Answer: 29, 47, and 76 petals

4
Missing Middle Term
A field guide lists daisy petal counts as 21, ?, 55, 89, where one number is smudged. If this follows the Fibonacci pattern, what is the missing count? Can you determine if there's exactly one answer?
Step 1 — Use the known relationship

If the sequence is 21, ?, 55, 89, then ? + 55 = 89 and 21 + ? = 55.

Step 2 — Solve from either equation

From 21 + ? = 55: ? = 55 - 21 = 34

From ? + 55 = 89: ? = 89 - 55 = 34

Step 3 — Verify consistency

Both equations give the same answer, confirming there's exactly one solution.

Step 4 — Final check

Verify: 21 + 34 = 55 and 34 + 55 = 89

Answer: The missing count is 34 petals, and this is the unique solution.

Frequently Asked Questions

What is the rule for the Fibonacci sequence?+
Each term in the Fibonacci sequence equals the sum of the two terms immediately before it. Starting with any two given consecutive terms, you can extend the sequence indefinitely by repeatedly adding the most recent pair to get the next term.
How do you extend a Fibonacci sequence when given partial terms?+
Add consecutive pairs: if you have terms a, b, c, then the next term is b+c, and the one after that is c+(b+c). In this problem, we have 13, 21, 34, so the next terms are 21+34=55 and 34+55=89.
Why do flower petals follow the Fibonacci sequence?+
Many plants exhibit Fibonacci numbers due to optimal packing patterns during growth. Petals, leaves, and seeds arrange themselves to maximize space efficiency and sunlight exposure, naturally producing these mathematical relationships found throughout nature.
DN

Dr. Neven Jurkovic

Mathematics educator with expertise in pattern recognition and sequence analysis

NJ
Neven Jurkovic, PhD

Professor of Computer Science, Palo Alto College, Alamo Colleges District, San Antonio, TX

Developer of Algebrator

Contact

This solution was prepared with AI assistance and reviewed by Dr. Jurkovic for mathematical accuracy and pedagogical clarity.

2026-08-11