Sequence Lab Report Worksheet Sequence Lab Report
Topic: Identifying Patterns & Notation
Student Name
Date
The Fibonacci Challenge
Observe the following string of numbers. Identify the rule governing the pattern and predict the next three terms.
1, 1, 2, 3, 5, 8, 13, , ,
Describe the rule in your own words:
Part 1: Decoding the Blueprint
A sequence is an ordered list of numbers. Each number in the list is a term , denoted as \(a_n\), where \(n\) is the index (position).
1. Given the sequence: \(7, 11, 15, 19, 23, \dots\)
What is the value of \(a_1\)?
What is the value of \(a_4\)?
2. Match the term to its mathematical description:
\(a_n\) ____________________ A. The very first term in the sequence.
\(a_1\) ____________________ B. The index or position of a term.
\(n\) ____________________ C. The "general term" or formula for any term.
Part 2: Construction Phase
Use the provided explicit formulas to generate the first five terms of each sequence.
\(a_n = 3n - 1\) Arithmetic
\(a_1\)
\(a_2\)
\(a_3\)
\(a_4\)
\(a_5\)
\(a_n = 2^n + 5\) Exponential
\(a_1\)
\(a_2\)
\(a_3\)
\(a_4\)
\(a_5\)
\(a_n = (-1)^n \cdot n^2\) Alternating
\(a_1\)
\(a_2\)
\(a_3\)
\(a_4\)
\(a_5\)
Part 3: Reverse Engineering
Determine a possible explicit formula (\(a_n\)) for each given sequence.
\(1, 4, 9, 16, 25, \dots\)
Formula:
\(2, 4, 6, 8, 10, \dots\)
Formula:
\(1/2, 1/3, 1/4, 1/5, \dots\)
Formula:
Reflect
"If a sequence has a formula \(a_n = n^2 + 1\), what would be the value of the 100th term? Why is having a formula better than listing every number?"
Pattern Blueprint Slides Calculus Prep: Unit 1
Pattern
Blueprint
Introduction to Sequences and Mathematical Notation
VER. 1.0 // SEQUENCES
The Hidden Rule
Look at this list. What comes next?
1
1
2
3
5
8
?
The Fibonacci Sequence
Discovered by Leonardo of Pisa (Fibonacci) in 1202 while studying rabbit populations.
Essential Question
How can we describe this rule mathematically?
The Language of Lists
Index (\(n\))
The position of a number in the list. Think of it as the "address." Always starts at 1, 2, 3...
Term (\(a_n\))
The actual value at that position. \(a_1\) is the first value, \(a_5\) is the fifth.
// MAPPING THE SEQUENCE
a1
2
,
a2
4
,
a3
6
,
a4
8
General Term: \(a_n = 2n\)
Construction Phase
Calculate the first 4 terms for: \(a_n = n^2 + 1\)
Term 1 (n=1) \(1^2 + 1 = 2\)
Term 2 (n=2) \(2^2 + 1 = 5\)
Term 3 (n=3) \(3^2 + 1 = 10\)
Term 4 (n=4) \(4^2 + 1 = 17\)
"Formulas are the DNA of the pattern. One line describes an infinity of numbers."
Ready to Blueprint?
Grab your Sequence Lab Report . Your goal is to identify the underlying rules of random data and translate them into mathematical language.
Start Lab
Check Notation
Pattern Detective Guide Pattern Detective Guide
Teacher Resource
Time
50 Minutes
Materials
Slides, Lab Report
Grade
11th / Calculus Prep
Instructional Flow
1
The Hook (10 mins)
Display the first sequence: 1, 1, 2, 3, 5, 8, 13... Let students struggle for a minute. Ask: "What is the relationship between a term and the ones that came before it?" Use the term recursive early here, even before formal notation.
2
Formalizing Notation (15 mins)
Transition to the slides. Emphasize that \(n\) is always a positive integer (\(n \in \mathbb{Z}^+\)). Students often confuse the index (address) with the term (value). Use the "house address vs. resident" analogy.
3
Lab Activity (25 mins)
Distribute the Sequence Lab Report . Circulate and check Part 2 specifically. Students may struggle with the alternating sequence formula \((-1)^n\). Explain how exponents of \(-1\) create the "blinking" effect of positive/negative.
Answer Key & Teacher Tips
Part 1: Decoding
Fibonacci Next 3: 21, 34, 55
Rule: Sum of previous two terms.
Q1: \(a_1 = 7, a_4 = 19\)
Matching: \(a_n \rightarrow\) C, \(a_1 \rightarrow\) A, \(n \rightarrow\) B
Part 2: Construction
\(a_n = 3n - 1\): 2, 5, 8, 11, 14
\(a_n = 2^n + 5\): 7, 9, 13, 21, 37
\(a_n = (-1)^n \cdot n^2\): -1, 4, -9, 16, -25
Common Misconception: The Index Zero
Students might ask why we don't start at \(n=0\). While some sequences do (like power series in Calculus), standard introductory notation starts at \(n=1\). Acknowledge that \(n=0\) is common in computer science, but for our "blueprint," 1 is the ground floor.
Staircase Blueprints Worksheet Staircase Blueprints
Topic: Arithmetic Sequences & Linear Growth
Student Name
Date
The 100-Step Challenge
You are building a staircase where each step adds exactly 7 inches to the total height. If the first step is 7 inches high, how high is the 100th step? Don't draw it—calculate it.
Initial Data:
Step 1
7"
Step 2
14"
Step 3
21"
Predicted Height for Step 100:
Part 1: The Arithmetic Blueprint
An arithmetic sequence grows by adding a common difference (\(d\)) to each term. The formula for the \(n\)-th term is:
\(a_n = a_1 + (n-1)d\)
1. Analyze: Why is it \((n-1)\) instead of just \(n\)?
2. Calculate the missing pieces:
\(3, 10, 17, 24, \dots\)
\(a_1 =\) _____ \(d =\) _____
\(100, 92, 84, 76, \dots\)
\(a_1 =\) _____ \(d =\) _____
Part 2: Discrete vs. Continuous
Arithmetic sequences are essentially linear functions . Compare the two below.
Sequence (Discrete)
\(a_n = 2n + 1\)
Plot the first 4 terms as points.
Function (Continuous)
\(f(x) = 2x + 1\)
Sketch the line for all \(x > 0\).
Observation:
What is the main visual difference between the two graphs? Why does a sequence only have "dots"?
Part 3: The Architect's Proof
Solve the following problems using the arithmetic sequence formula.
Problem A: Find the 50th term of the sequence where \(a_1 = 12\) and \(d = 5\).
Problem B: A sequence begins \(15, 11, 7, 3, \dots\) Which term in the sequence is \(-81\)?
Unit 1: Infinite Patterns // Lesson 2: Linear Ladder
Linear Ladder Slides Lesson 2: Arithmetic Progressions
Linear
Ladder
Deriving the formulas for constant growth and connecting sequences to linear functions.
The Climb
If step 1 is 7 inches, and every step after adds 7 inches...
1 7 inches
2 14 inches
3 21 inches
Goal: Step 100
"Manual calculation is for laborers. Generalization is for architects."
700 inches?
Defining Constant Growth
The Common Difference (\(d\))
The fixed amount added to each term to get the next. It’s the "slope" of our sequence.
\(d = a_{n} - a_{n-1}\)
Example 1
5, 8, 11, 14... d = +3
Example 2
20, 15, 10, 5... d = -5
The N-th Term Formula
\(a_n = a_1 + (n-1)d\)
First Term
\(a_1\)
Distance from Start
\((n-1)\)
Jump Size
\(d\)
"Why (n-1)? Because we don't 'jump' to get to the first term—we're already there."
Sequences vs. Linear Functions
Discrete
Only whole number inputs (n = 1, 2, 3...)
Domain: {1, 2, 3, ...}
Continuous
All values allowed (x = 1.1, 1.2, π...)
Domain: (0, ∞)
Arithmetic Architect Guide Arithmetic Architect Guide
Teacher Resource // L2
Concept
Arithmetic Growth
Linear Match
Slope \(m\) = Difference \(d\)
Focus
Explicit Formulas
Architectural Instruction
1. The Ladder Hook
When introducing the staircase challenge, encourage students to find a "shortcut" for Step 100. If a student says "just multiply 7 by 100," ask them why. Note that this works because the first step starts at 7. What if the first step was 10 inches and the others were 7? That discrepancy forces the need for a formula.
Critical Discussion Point: The (n-1) Factor
This is the most common point of failure. Students want to use \(n\). Use a physical analogy: To get to the 4th floor of a building starting from the 1st floor, you only take 3 flights of stairs. \(a_4 = a_1 + 3d\). The number of 'jumps' is always one less than the destination term number.
2. Linear Comparison
Bridge the gap between Algebra 1 and Calculus. In Algebra 1, lines are continuous. In Calculus, we deal with sequences which are discrete "samplings" of linear functions. Point out that \(a_n = dn + (a_1 - d)\) is essentially \(y = mx + b\).
Blueprint Answer Key
Part 1: Calculations
Step 100: 700 inches. (Formula: \(7 + (99)7 = 700\)).
Missing 1: \(a_1 = 3, d = 7\).
Missing 2: \(a_1 = 100, d = -8\).
Part 3: Applications
Problem A: \(a_{50} = 12 + (49)5 = 257\).
Problem B: \(-81 = 15 + (n-1)(-4)\).
\(-96 = (n-1)(-4)\) \(\rightarrow\) \(24 = n-1\) \(\rightarrow\) \(n = 25\).
Misconception Alert: The 'Difference' Order
Students often do \(a_1 - a_2\) to find \(d\). Correct this immediately. It must be New - Old . If the sequence is decreasing, \(d\) must be negative.
Folding Frontiers Worksheet Folding Frontiers
Topic: Geometric Sequences & Constant Ratios
Investigator
Launch Date
The Doubling Effect
A standard sheet of paper is roughly 0.1 mm thick. Every time you fold it in half, the thickness doubles. Predict the thickness after 42 folds. (Hint: The Moon is 384,400 km away).
Fold 0
0.1 mm
Fold 1
0.2 mm
Fold 2
0.4 mm
Fold 3
0.8 mm
After 42 Folds, the thickness is approximately:
Part 1: The Ratio Engine
In a geometric sequence , each term is found by multiplying the previous term by a common ratio (\(r\)) . The explicit formula is:
\(a_n = a_1 \cdot r^{(n-1)}\)
1. Identify the Ratio (\(r\)) for each sequence:
3, 6, 12, 24, ... \(r =\)
81, 27, 9, 3, ... \(r =\)
5, -10, 20, -40, ... \(r =\)
2. Conceptual Logic:
"Why is the exponent \((n-1)\)? Explain using the 'jumps' logic from arithmetic sequences."
Part 2: Trajectory Analysis
Solve the following problems by constructing an explicit formula first.
Problem A: Deep Space Probe
A probe starts with 1,024 GB of storage. Each year, it loses exactly half (\(1/2\)) of its storage capacity. How much storage remains at the start of year 8?
Formula \(a_n\)
Solution \(a_8\)
Problem B: Viral Expansion
A video gets 500 views in its first hour. Every hour after, the number of new views triples (\(\times 3\)). How many new views will occur in the 6th hour alone?
Formula \(a_n\)
Solution \(a_6\)
The Geometric Warning
"Geometric sequences are the DNA of explosive growth. Unlike arithmetic growth (which adds), geometric growth (which multiplies) quickly becomes unmanageable. This is the difference between a ladder and a rocket."
Unit 1: Infinite Patterns Lesson 3: Ratio Rocket Module 1.3
Ratio Rocket Slides Lesson 3: Geometric Progressions
Ratio
Rocket
Mastering the explosive power of constant ratios and exponential growth.
The Fold to the Moon
A standard sheet (0.1mm) folded 42 times...
42 Folds
Total Distance
439,804 km
"The Moon is only 384,400 km away. You've overshot your target."
Why does this happen?
Arithmetic growth (adding) is a ladder .
Geometric growth (multiplying) is a rocket .
The Common Ratio (\(r\))
The Calculation
\(r = \frac{a_n}{a_{n-1}}\)
"Divide any term by the term that came right before it."
Example: 2, 6, 18, 54...
6 / 2 = 3
18 / 6 = 3
\(r = 3\)
Grow or Decay?
\(|r| > 1\) : Exploding Growth
\(0 < |r| < 1\) : Rapid Decay
\(r < 0\) : Alternating Signs
The Launch Formula
\(a_n = a_1 \cdot r^{(n-1)}\)
Start Point
\(a_1\)
Multiplier
\(r\)
Number of Multiplies
\(n-1\)
"We multiply by \(r\) once to get to \(a_2\), twice for \(a_3\)... thus \((n-1)\) times for \(a_n\)."
Exponential Link
Arithmetic sequences map to linear functions.
Geometric sequences map to exponential functions.
\(f(x) = a \cdot b^x\)
Where \(a\) is your starting point and \(b\) is your base (the ratio).
TO INFINITY
Geometric Growth Guide Geometric Growth Guide
Teacher Resource // L3
Concept
Multiplicative Growth
Ratio \(r\)
Growth: \(|r|>1\) / Decay: \(|r|<1\)
Calculus Link
Exponential Derivatives
Launch Protocol
1. The Paper Fold Reveal
Students will intuitively think 42 folds is "a few inches" or "a few feet." The reveal of 439,000 km is a powerful moment. Use this to highlight how humans are notoriously bad at predicting exponential growth.
The Math: \(0.1 \cdot 2^{42}\) mm = \(439,804,651,110\) mm \(\rightarrow\) \(439,804\) km.
The Common Ratio Pitfall
"Students often see '81, 27, 9, 3' and say the rule is 'Divide by 3'. While true, the formula requires a multiplier. Force them to rewrite it as \(r = 1/3\). In geometric sequences, we only multiply."
2. Alternating Sequences
Spend a moment on negative ratios (e.g., \(r = -2\)). Show how the sequence "bounces" above and below the x-axis. This is a critical visualization for future work with alternating series and convergence tests in Calculus BC.
Frontier Solution Key
Part 1: Ratios
3, 6, 12... \(r = 2\)
81, 27, 9... \(r = 1/3\)
5, -10, 20... \(r = -2\)
Part 2: Applications
Probe A: \(a_n = 1024 \cdot (0.5)^{n-1}\)
\(a_8 = 1024 \cdot (0.5)^7 = 8\) GB.
Views B: \(a_n = 500 \cdot (3)^{n-1}\)
\(a_6 = 500 \cdot (3)^5 = 500 \cdot 243 = 121,500\).
Calculus Connection: Derivatives of Sequences
Unlike linear functions (arithmetic) where the rate of change is constant, geometric sequences have a rate of change that is proportional to the term itself. This is the foundation of the differential equation \(\frac{dy}{dx} = ky\).
Formula Translator Worksheet Formula Translator
v4.0 // Recursive vs Explicit Translation
User_ID
Timestamp
Recursive_Function.js
// THE COMPUTER'S CHALLENGE
"Computers love recursion. They don't mind doing the same thing over and over. Humans, however, prefer the 'jump' of explicit formulas."
1. Start with \(a_1 = 5\)
2. To get the next term, multiply the current term by 2 and add 3.
Find the first 5 terms:
\(a_1=5\), \(a_2=\)___, \(a_3=\)___, \(a_4=\)___, \(a_5=\)___
Could you easily find \(a_{100}\) using this method?
Part 1: Logic Gates
Match the definition to the correct formula type.
Explicit Formula
"Gives you the value based on the position \(n\)."
Recursive Formula
"Gives you the value based on the previous term \(a_{n-1}\)."
\(a_n = 3n + 5\)
\(a_n = a_{n-1} + 3\)
\(a_1 = 4\)
Part 2: The Compiler
Convert the following formulas between forms. Show your logic.
Input: Arithmetic Explicit
\(a_n = 7n - 2\)
Output: Recursive Form
\(a_1 =\)
\(a_n =\)
Input: Geometric Explicit
\(a_n = 5(3)^{n-1}\)
Output: Recursive Form
\(a_1 =\)
\(a_n =\)
Input: Arithmetic Recursive
\(a_1 = 12\)
\(a_n = a_{n-1} - 8\)
Output: Explicit Form
\(a_n =\)
Analysis_Summary
3. Why would a programmer prefer a recursive formula while an architect prefers an explicit one?
[Think about calculation speed for the 1,000,000th term vs. building a step-by-step process]
System Ready // End of Module 1.4
Coder Logic Slides BOOTING MODULE 1.4
Coder
Logic
Recursive vs. Explicit Systems in Mathematics and Computing.
Communication Modes
Explicit
The "Teleporter." You tell it where you want to go (\(n\)), and it takes you there instantly.
\(a_n = 5n + 2\)
Recursive
The "Step-by-Step." You tell it where to start and what to do next. It iterates through every term.
\(a_1 = 7\)
\(a_n = a_{n-1} + 5\)
Syntax: Deciphering \(a_{n-1}\)
The Target
\(a_n\)
"The current term we are looking for."
The Source
\(a_{n-1}\)
"The term that came immediately before."
CRITICAL
"Think of \(a_{n-1}\) as 'The result of the previous loop'."
Efficiency Benchmark
Finding Term 1,000,000
Recursive fails. You would have to calculate 999,999 numbers first.
Automating Growth
Recursive wins. It defines a simple 'rule' a computer can loop forever.
// STACK OVERFLOW SIMULATION
n=1 v=10
n=2 v=20
n=3 v=30
...
n=1,000,000 ERROR
Formula Relay
You will now act as a compiler. Translate definitions across languages. Can you find the 100th term faster than the computer?
> RUN_TRANSLATOR.EXE
Recursive Relay Guide Recursive Relay Guide
Teacher Resource // L4
Module
Iteration Control
Skill
Notation Switching
Output
Form Conversion
Activity: The Human Computer
Divide the class into two teams: Team Recursive and Team Explicit .
Give them the rule: "Start at 5, add 7 each time."
Task: Find the 100th term.
Team Recursive must write every term down in order (\(a_1, a_2, a_3 \dots\)).
Team Explicit must derive the formula and calculate \(a_{100}\) directly.
The Result: Team Explicit will finish in 30 seconds. Team Recursive will take 5 minutes and likely make a calculation error. This is the "Aha!" moment for why notation matters.
// Translation Mechanics
The key to converting is identifying \(a_1\) and the Change Factor .
- For Arithmetic: The change factor is \(d\).
- For Geometric: The change factor is \(r\).
In recursive form, the change factor is written as a direct operation on \(a_{n-1}\). In explicit form, it's multiplied by \((n-1)\) or used as a base with exponent \((n-1)\).
Translation Key
Part 1: Logic Gates
Explicit: \(a_n = 3n + 5\)
Recursive: \(a_n = a_{n-1} + 3\), \(a_1 = 4\) (Note: Recursive formulas MUST include \(a_1\)).
Part 2: The Compiler
A: \(a_1 = 5, a_n = a_{n-1} + 7\)
B: \(a_1 = 5, a_n = 3(a_{n-1})\)
C: \(a_n = 12 + (n-1)(-8)\) or \(a_n = -8n + 20\)
Programming Alert: Base Case
Remind students that a recursive formula without a starting term (\(a_1\)) is an "infinite loop." The computer never knows where to start its calculation. This is called the Base Case in computer science.
Destination Infinity Worksheet Destination Infinity
Topic: Limits of Sequences & Convergence
Observer
Horizon_ID
The Edge of Numbers
Consider the sequence \(a_n = \left(1 + \frac{1}{n}\right)^n\). As \(n\) gets larger and larger, what value does the sequence approach? Fill in the table to find out.
n = 1
2.0000
n = 10
2.5937
n = 100
2.7048
n = 10,000
2.7181
"Does it look like it's going to infinity, or is it stopping at a specific 'destination'?"
Part 1: The Behavior Test
A sequence converges if its terms approach a single value as \(n \to \infty\). Otherwise, it diverges .
1. Predict the behavior of each sequence (\(n \to \infty\)):
\(a_n = \frac{1}{n}\)
Converges to ____ Diverges
\(a_n = 3n + 1\)
Converges to ____ Diverges
\(a_n = (-1)^n\)
Converges to ____ Diverges
Part 2: Calculating the Horizon
Calculate the limit as \(n\) approaches infinity for each sequence. Use the "dominant term" strategy (highest power of \(n\)).
Problem A
\(a_n = \frac{4n + 3}{2n - 1}\)
Show Your Work:
Limit \(L\)
?
Problem B
\(a_n = \frac{n^2 + 5}{n^3 - 2}\)
Show Your Work:
Limit \(L\)
?
The Horizontal Asymptote Connection
"Limits of sequences are the discrete version of horizontal asymptotes in functions. When you find the limit of a sequence, you are finding where its graph settles down as it journeys toward the infinite."
Define 'Convergence' in your own words:
Infinite Patterns Lesson 5: Infinite Horizon Sequence End
Infinite Horizon Slides Lesson 5: Limits and Convergence
Infinite
Horizon
Where the discrete list meets the continuous limit.
The Magic Boundary
\(a_n = (1 + \frac{1}{n})^n\)
As \(n\) goes from 1 to 1,000,000, the value doesn't explode to infinity. It crawls toward a mysterious number...
2.71828...
Meet e
Euler's number is defined as the limit of this sequence as \(n\) approaches infinity. It is the destination that the pattern never quite reaches, but always chases.
lim (n → ∞) an = e
The Convergence Test
Convergent
The sequence settles on a single value \(L\).
Divergent
The sequence grows to infinity or bounces forever.
"Calculus is the study of change, but also the study of limits."
The "Heaviest Term" Strategy
limn → ∞
4n2 + 5n
2n2 - 10
= 2
"As \(n\) gets massive, \(+5n\) and \(-10\) are irrelevant crumbs. Only the largest power of \(n\) matters."
"Divide the leading coefficients. That's your destination."
Beyond the List
You've mastered patterns. You've built ladders and launched rockets. Now, you stand at the edge of the infinite.
Next Exit: The Derivative
Convergence Consultant Guide Convergence Consultant Guide
Teacher Resource // L5
Theme
Behavior at Infinity
Key Term
Convergence (\(L\))
Discovery
The Constant \(e\)
facilitation Notes
1. The 'e' Discovery Hook
This is a classic inquiry hook. Students often expect a sequence with an exponent of \(n\) to grow to infinity. Show them that as the base gets smaller (closer to 1), the exponent's growth is "counteracted." The number \(e\) (approx 2.718) is the point of equilibrium.
Conceptual Misconception: Oscillating Divergence
"Students think divergence only means 'going to infinity.' Correct this by showing the alternating sequence \(a_n = (-1)^n\). It never settles on one value, even though it stays small. It diverges by oscillation."
2. The dominant Term Rule
In Calculus, this is formally called L'Hôpital's Rule (though don't teach that yet). For now, use the "Crumbs" analogy: If you have a million dollars (\(n^2\)), does finding a penny (\(5n\)) really change your net worth? At infinity, only the highest powers matter.
Infinite Horizon Solution Key
Part 1: Behavior
\(1/n\): Converges to 0.
\(3n+1\): Diverges to \(\infty\).
\((-1)^n\): Diverges (Oscillates).
Part 2: Limits
Problem A: \(\frac{4n}{2n} = 2\). Limit is 2.
Problem B: \(\frac{n^2}{n^3} = \frac{1}{n}\). Limit is 0.
Calculus Connection: Horizontal Asymptotes
The limit of a sequence \(a_n\) as \(n \to \infty\) is identical to finding the horizontal asymptote of the function \(f(x)\) as \(x \to \infty\). This skill is foundational for sketching rational functions and understanding infinite series convergence (The Divergence Test).