Weekly Reflection 11-23-18
Recursive and Explicit forms: There is no objective Recursive Example: Find the fifth term of a recursive define sequence a(1)=1 a(n)=a(n-1)+2n+1 where n is greater than or equal to two. a(1)=1 a(2)=a(2-1)+2(2)+1=a(1)+4+1=1+5=6 a(3)=a(3-1)+2(3)+1=6/a(2)+6+1=13 a(4)=a(4-1)+2(4)+1=13/a(3)+8+1=22 a(5)=a(5-1)+2(5)+1=22/a(4)+10+1=33 33 is the fifth term Explicit Example: Find the first four terms of the sequence given by a(n)=2n(-1)^n ______ _______ _______ _______ a1 a2 a3 a4 a1=2(1)(-1)^1= -2 ...