Recurrence relation oddball one

In summary, the conversation discusses finding a summation form for the function T(n) = 2T(n-1) with T(1)=1. The suggestion is to start with a base case and look for a pattern, rather than starting at the nth step. This approach may lead to a summation form for T(n).
  • #1
illidari
47
0

Homework Statement



T(n) = 2T(n-1)
T(1)=1

The Attempt at a Solution



I am trying to show the iterations.

T(n) = 2T(n-1)
T(n) = 22T(n-2)
T(n) = 222T(n-3)

Is this the right track? Where the result would be 22222...1eventually?

The problem just feels awkward D:

If my answer is right is there any way to get this into a summation form?
 
Physics news on Phys.org
  • #2
Usually for these you start with a small n (or your base case) and start to look for a pattern.

T(1) = x
T(2) = x + something
T(3) = x + T(2)
.
.
.
T(n) = The summation of some pattern you found

Give that a try instead of looking for a pattern at step n.
 

Related to Recurrence relation oddball one

What is a recurrence relation?

A recurrence relation is a mathematical expression that defines a sequence of values based on the previous terms in the sequence.

What is an oddball one recurrence relation?

An oddball one recurrence relation is a type of recurrence relation where the first term in the sequence is an odd number and each subsequent term is calculated by adding one to the previous term.

What is the formula for an oddball one recurrence relation?

The formula for an oddball one recurrence relation is an+1 = an + 1, where an represents the nth term in the sequence.

How do you solve an oddball one recurrence relation?

To solve an oddball one recurrence relation, you can use a table or a formula to calculate each term in the sequence until you reach the desired term.

What are some real-life applications of recurrence relations?

Recurrence relations have many real-life applications, such as predicting population growth, analyzing algorithms, and modeling natural phenomena like the Fibonacci sequence in sunflower seed spirals.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
8
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
762
  • Engineering and Comp Sci Homework Help
Replies
6
Views
934
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
Replies
8
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
6
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
11
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
2K
Back
Top