Answer :
Answer:
(a)[tex]n^{th} = n[/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) + 1[/tex]
(b)[tex]n^{th} = 2^{n-1}[/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) * 2[/tex]
(c)[tex]n^{th} = n![/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) * n[/tex]
Step-by-step explanation:
(a) This is a sequence of consecutive number
[tex]n^{th} = n[/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) + 1[/tex]
(b) This is a sequence of 2 to the power of n - 1. The next number is twice time of this number
[tex]n^{th} = 2^{n-1}[/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) * 2[/tex]
(c) This is factorial sequence. Where the next number is this number multiplied by [tex]n^{th}[/tex]
[tex]n^{th} = n![/tex]
[tex]f(1) = 1[/tex]
[tex]f(n) = f(n-1) * n[/tex]