Multiple choices 9/50
Answer (Choose 1 answer)
(See picture)
A. f(n) 3f (n-1). f(1) = 3
B. f(n)=nf (n-1), f(1) = 3
Next
C. None of the other choices is correct
D. f(n) 3f (n-1), f(1) = 9
Choose a recursive definition for the function f(n) = 3n+1, n = 1,2,...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 30
31 32
33
34
35
36
37
38
39
40 41 47
43
44
45 46 47 48
49 50