Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

157 Recursion

star
star
star
star
star
Posljednje ažuriranje about 5 years ago
10

Recursion:

given the first number, and an equation that references the previous number, you can find a new number!

1
1
1
1
1
1
1
1
1
1

You can now do Recursive (level 1&2) on DeltaMath.

Pitanje 1
1.

a_1=7

a_n=a_{n-1}+5

Find a_2

Pitanje 2
2.

a_1=7

a_n=a_{n-1}+5

Find a_3

Pitanje 3
3.

a_1=7

a_n=a_{n-1}+5

Find a_6

Pitanje 4
4.

a_1=6

a_n=-2a_{n-1}

Find a_2

Pitanje 5
5.

a_1=6

a_n=-2a_{n-1}

Find a_3

Pitanje 6
6.

a_1=6

a_n=-2a_{n-1}

Find a_6

Pitanje 7
7.

a_{11}=6

a_n=7a_{n-1}+3

Find a_{12}

Pitanje 8
8.

How are recurvisive formulas (today) and explicit formulas (yesterday) the same? different? When would be best to use each one?

Pitanje 9
9.

a_1=4

a_n=(a_{n-1})^2-2

Find the first 4 terms.

Pitanje 10
10.

a_1=9

a_n=3a_{n-1}-3

Find the first 5 terms.