2. Reccurence Relations Flashcards
1st term in sequence
u1
2nd term in sequence
u2
nth term in recurrence relation
un
The formula for the nth term of a sequence is given by un = 4n - 5. Find u1, u2, and u3.
u1 = -1
u2 = 3
u3 = 7
Find u2, u3, and u4 for the equation un+1 = un + 4. u1 = -1
u2 = 3
u3 = 7
u4 = 11
form recurrence relations are written as
un+1 = au1 + b
For the recurrence relation Un+1 = 5un - 2, find u3 when u0 = 1.
u3 = 63
For the recurrence relation un+1 = -2un + 3, find u4 when u1 = 5
u4 = -31
For the recurrence relation un+1 = 0.5un -1, u0 = 62. Find the smallest value of n so that un < 10
Smallest value is n = 3
The value of a house appreciates by 4% every year and is now worth 130000. Find a recurrence relation to express this and find the value after 3 years
un+1 = 1.04n, u0 = 130000
after 3 years, house worth £146, 232
A balloon contains 2000ml of air and is being inflated by the mouth
Each puff inflates the balloon by 15% but 100ml of air escapes
a) find recurrence relation
b) how much air is in the balloon after 3 puffs
a) un+1 = 1.15un - 100, u0 = 2000
b) after 3 puffs, there are 2695ml of air
A patient is given 160ml of medicine. Every 6 hours, 25% of the drug passes out of her bloodstream
Every 6 hours, a further 20ml dose is given
a) find recurrence relation
b) find amount of drug in bloodstream after 24 hours
a) un+1 = 0.75n + 20, u0 = 160
b) 105.3ml of the drug left after 24 hours
Limit equation
b / (1 - a)
un+1 = aun + b
b / (1 - a)
un+1 = aun + b
Limit equation
Find the limit of un+1 = 0.2un + 9
Limit = 11.25