equations Flashcards

1
Q

quadratic recursive

A

f(n)=f(n-1)+1st diff+2nd diff(n-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

exponential explicit

A

f(n)=f(1)(r^x-1) [for example: if 25,75,225 then it’s * by 3 = 3 is r]
or f(n)=f(0)
(r^x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

exponential recursive

A

f(1)=1st term
f(n)=f(n-1)*r

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

linear explicit

A

f(n)=f(1)+(n-1)d (d is rate of change)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

linear recursive

A

f(1)=1st term
f(n)=d+f(n-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly