Solving C: Recursive Rule for Sequence 2, 6, 8, 14, 22, 36

  • Thread starter Thread starter recoil33
  • Start date Start date
  • Tags Tags
    Term
Click For Summary
SUMMARY

The recursive rule for the sequence 2, 6, 8, 14, 22, 36 is defined as Tn+1 = Tn + Tn-1, where Tn represents the nth term of the sequence. The differences between consecutive terms reveal a pattern where each term is the sum of the two preceding terms, starting from the initial values. This method effectively captures the underlying relationship within the sequence, allowing for the generation of subsequent terms.

PREREQUISITES
  • Understanding of recursive sequences
  • Familiarity with mathematical induction
  • Basic knowledge of numerical patterns
  • Ability to analyze sequences and series
NEXT STEPS
  • Study recursive sequence definitions and properties
  • Learn about mathematical induction techniques
  • Explore Fibonacci-like sequences and their applications
  • Investigate numerical pattern recognition strategies
USEFUL FOR

Mathematicians, educators, students studying sequences, and anyone interested in recursive functions and numerical analysis.

recoil33
Messages
28
Reaction score
0
Write a recursive rule for each of the following sequences:
(a) 41, 42.5, 44, 45.5, 47, 48.5, 50, …

(b) 300, 30, 3, 0.3, 0.03, 0.003, …

(c) 2, 6, 8, 14, 22, 36, …

-----------------
a) Tn+1 = Tn + 1.5
b) Tn+1 = 0.1Tn
c) ?

For C, The difference is 4, 2, 6, 8, 14,
I've figured out several terms, but they will only solve individual bits of the recursive term.
Someone please explain how i would go upon figuring out the recursive rule for question c?
 
Physics news on Phys.org
Do you notice that after the first "4", the differences are the same as the numbedrs in the sequence? What is the sum of two consecutive numbers in the sequence? What is 2+ 6? What is 6+ 8? What is 8+ 14? What is 14+ 22?
 
Thank you so much, I really don't know how i missed that!
 

Similar threads

Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 9 ·
Replies
9
Views
6K
  • · Replies 19 ·
Replies
19
Views
2K
  • · Replies 15 ·
Replies
15
Views
6K
  • · Replies 8 ·
Replies
8
Views
2K