Consider the sequence defined as
a[1] = 2; and a[k] = a[k-1]+2*k-1 for all positive integer k >=
2;
. Show that a[n] = 1+sum(2*i-1, i = 1 .. n);
. Hint: Start with sum(2*i-1, i = 1 .. n);and use the recursive
definition of the sequence.

Consider the sequence defined as a[1] = 2; and a[k] = a[k-1]+2*k-1 for all positive integer...
2.
Exercise 2. Consider the sequence (xn)n≥1 defined by xn = Xn k=1
cos(k) k + n2 = cos(1) 1 + n2 + cos(2) 2 + n2 + · · · + cos(n) n +
n2 . (a) Use the triangle inequality to prove that |xn| ≤ n 1 + n2
for all n ≥ 1. (b) Use (a) and the -definition of limit to show
that limn→∞ xn = 0.
Exercise 2. Consider the sequence (In)n> defined by cos(k)...
The Fibonnaci sequence is a recursive sequence defined as: f0 = 1, f1 = 1, and fn = fn−1 + fn−2 for n > 1 So the first few terms are 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, . . .. Write a function/procedure/algorithm that computes the sum of all even-valued Fibonnaci terms less than or equal to some positive integer k. For example the sum of all even-valued Fibonnaci terms less than or equal to 40...
3. The sequence (Fn) of Fibonacci numbers is defined by the recursive relation Fn+2 Fn+1+ F for all n E N and with Fi = F2= 1. to find a recursive relation for the sequence of ratios (a) Use the recursive relation for (F) Fn+ Fn an Hint: Divide by Fn+1 N (b) Show by induction that an 1 for all n (c) Given that the limit l = lim,0 an exists (so you do not need to prove that...
Prove using mathematical induction that for every positive integer n, = 1/i(i+1) = n/n+1. 2) Suppose r is a real number other than 1. Prove using mathematical induction that for every nonnegative integer n, = 1-r^n+1/1-r. 3) Prove using mathematical induction that for every nonnegative integer n, 1 + i+i! = (n+1)!. 4) Prove using mathematical induction that for every integer n>4, n!>2^n. 5) Prove using mathematical induction that for every positive integer n, 7 + 5 + 3 +.......
Consider Fibonacci number F(N), where N is a positive integer, defined as follows. F(1) = 1 F(2) = 1 F(N) = F(N-1) + F(N-2) for N > 2 a) Write a recursive function that computes Fibonacci number for a given integer N≥ 1. b) Prove the following theorem using induction: F(N) < ΦN for integer N≥ 1, where Φ = (1+√5)/2.
Question 10. Consider the function defined by f(n) = 2n where n is a positive integer. (i) Can this function be computed by a Turing machine? Why or why not? ( ii) Is this function primitive recursive? Why or why not?
Solve and show work for problem 8
Problem 8. Consider the sequence defined by ao = 1, ai-3, and a',--2an-i-an-2 for n Use the generating function for this sequence to find an explicit (closed) formula for a 2. Problem 1. Let n 2 k. Prove that there are ktS(n, k) surjective functions (n]lk Problem 2. Let n 2 3. Find and prove an explicit formula for the Stirling numbers of the second kind S(n, n-2). Problem 3. Let n 2...
DEFINITION: For a positive integer n, τ(n) is the number of
positive divisors of n and σ(n) is the sum of those divisors.
4. The goal of this problem is to prove the inequality in part (b), that o(1)+(2)+...+on) < nº for each positive integer n. The first part is a stepping-stone for that. (a) (10 points.) Fix positive integers n and k with 1 <ksn. (i) For which integers i with 1 <i<n is k a term in the...
1. The famous Fibonacci sequence f1, f2, f3, . . . is defined as f1 = 1, f2 = 1 fn = fn−1 + fn−2, for n > 2 So the sequence begins as 1, 1, 2, 3, 5, 8, 13, 21, 34, . . .. Define a recursive function int fibonacci(int n) which returns the n-th Fibonacci number 2. Define recursive function my_sequence(n) which returns the n-th member of the sequence a1 = 3, a2 = 5, a3 =...
3 For each positive integer n, define E(n) 2+4++2n (a) Give a recursive definition for E(n). (b) Let P(n) be the statement E(n) nn1)." Complete the steps below to give a proof by induction that P(n) holds for every neZ+ i. Verify P(1) is true. (This is the base step.) ii. Let k be some positive integer. We assume P(k) is true. What exactly are we assuming is true? (This is the inductive hypothesis.) iii. What is the statement P(k...