Find the first six terms of each of the following sequences, starting with n=1n=1.
1. an=1+(−1)nan=1+(−1)n for n≥1n≥1
3. a1=1a1=1 and an=an−1+nan=an−1+n for n≥2n≥2
5. Find an explicit formula for anan where a1=1a1=1 and an=an−1+nan=an−1+n for n≥2n≥2.
7. Find a formula anan for the nthnth term of the arithmetic sequence whose first term is a1=−3a1=−3 such that an−1−an=4an−1−an=4 for n≥1n≥1.
9. Find a formula anan for the nthnth term of the geometric sequence whose first term is a1=3a1=3 such that an+1an=110an+1an=110 for n≥1n≥1.
11. Find an explicit formula for the nthnth term of the sequence satisfying a1=0a1=0 and an=2an−1+1an=2an−1+1 for n≥2n≥2.
Find a formula for the general term anan of each of the following sequences.
13. {1,-13,15,-17,... }{1,-13,15,-17,... }
Find a function f(n)f(n) that identifies the nthnth term anan of the following recursively defined sequences, as an=f(n)an=f(n).
15. a1=2a1=2 and an+1=2anan+1=2an for n≥1n≥1
17. a1=2a1=2 and an+1=(n+1)an2an+1=(n+1)an2 for n≥1n≥1
Plot the first NN terms of each sequence. State whether the graphical evidence suggests that the sequence converges or diverges.
19. [T] a1=1a1=1, a2=2a2=2, and for n≥2n≥2, an=12(an−1+an−2)an=12(an−1+an−2); N=30N=30
21. [T] a1=1a1=1, a2=2a2=2, and for n≥3n≥3, an=√an−1an−2an=√an−1an−2; N=30N=30
Suppose that limn→∞an=1limn→∞an=1, limn→∞bn=−1limn→∞bn=−1, and 0<-bn<an0<-bn<an for all nn. Evaluate each of the following limits, or state that the limit does not exist, or state that there is not enough information to determine whether the limit exists.
23. limn→∞(3an−4bn)limn→∞(3an−4bn)
25. limn→∞an+bnan−bnlimn→∞an+bnan−bn
Find the limit of each of the following sequences, using L’Hôpital’s rule when appropriate.
27. n22n
29. √n√n+1
For each of the following sequences, whose nth terms are indicated, state whether the sequence is bounded and whether it is eventually monotone, increasing, or decreasing.
31. n2n, n≥2
33. sinn
35. n1n, n≥3
37. tann
38. Determine whether the sequence defined as follows has a limit. If it does, find the limit.
a1=√2, a2=√2√2, a3=√2√2√2 etc.
39. Determine whether the sequence defined as follows has a limit. If it does, find the limit.
a1=3, an=√2an−1, n=2,3,... .
Use the Squeeze Theorem to find the limit of each of the following sequences.
41. cos(1n)−11n
43. an=sinnsin(1n)
For the following sequences, plot the first 25 terms of the sequence and state whether the graphical evidence suggests that the sequence converges or diverges.
45. [T] an=cosn
Determine the limit of the sequence or show that the sequence diverges. If it converges, find its limit.
47. an=(2n)1n−n1n
49. an=(1−2n)n
51. an=2n+3n4n
53. an=(n!)2(2n)!
Newton’s method seeks to approximate a solution f(x)=0 that starts with an initial approximation x0 and successively defines a sequence xn+1=xn−f(xn)f′(xn). For the given choice of f and x0, write out the formula for xn+1. If the sequence appears to converge, give an exact formula for the solution x, then identify the limit x accurate to four decimal places and the smallest n such that xn agrees with x up to four decimal places.
55. [T] f(x)=(x−1)2−2, x0=2
57. [T] f(x)=lnx−1, x0=2
58. [T] Suppose you start with one liter of vinegar and repeatedly remove 0.1L, replace with water, mix, and repeat.
- Find a formula for the concentration after n steps.
- After how many steps does the mixture contain less than 10% vinegar?
59. [T] A lake initially contains 2000 fish. Suppose that in the absence of predators or other causes of removal, the fish population increases by 6% each month. However, factoring in all causes, 150 fish are lost each month.
- Explain why the fish population after n months is modeled by Pn=1.06Pn−1−150 with P0=2000.
- How many fish will be in the pond after one year?
60. [T] A bank account earns 5% interest compounded monthly. Suppose that $1000 is initially deposited into the account, but that $10 is withdrawn each month.
- Show that the amount in the account after n months is An=(1+.0512)An−1−10; A0=1000.
- How much money will be in the account after 1 year?
- Is the amount increasing or decreasing?
- Suppose that instead of $10, a fixed amount d dollars is withdrawn each month. Find a value of d such that the amount in the account after each month remains $1000.
- What happens if d is greater than this amount?
61. [T] A student takes out a college loan of $10,000 at an annual percentage rate of 6%, compounded monthly.
- If the student makes payments of $100 per month, how much does the student owe after 12 months?
- After how many months will the loan be paid off?
63. [T] The binary representation x=0.b1b2b3... of a number x between 0 and 1 can be defined as follows. Let b1=0 if x<12 and b1=1 if 12≤x<1. Let x1=2x−b1. Let b2=0 if x1<12 and b2=1 if 12≤x<1. Let x2=2x1−b2 and in general, xn=2xn−1−bn and bn−1=0 if xn<12 and bn−1=1 if 12≤xn<1. Find the binary expansion of 13.
For the following two exercises, assume that you have access to a computer program or Internet source that can generate a list of zeros and ones of any desired length. Pseudorandom number generators (PRNGs) play an important role in simulating random noise in physical systems by creating sequences of zeros and ones that appear like the result of flipping a coin repeatedly. One of the simplest types of PRNGs recursively defines a random-looking sequence of N integers a1,a2,... ,aN by fixing two special integers K and M and letting an+1 be the remainder after dividing K.an into M, then creates a bit sequence of zeros and ones whose nth term bn is equal to one if an is odd and equal to zero if an is even. If the bits bn are pseudorandom, then the behavior of their average (b1+b2+⋯+bN)N should be similar to behavior of averages of truly randomly generated bits.
65. [T] Starting with K=16,807 and M=2,147,483,647, using ten different starting values of a1, compute sequences of bits bn up to n=1000, and compare their averages to ten such sequences generated by a random bit generator.
Candela Citations
- Calculus Volume 2. Authored by: Gilbert Strang, Edwin (Jed) Herman. Provided by: OpenStax. Located at: https://openstax.org/books/calculus-volume-2/pages/1-introduction. License: CC BY-NC-SA: Attribution-NonCommercial-ShareAlike. License Terms: Access for free at https://openstax.org/books/calculus-volume-2/pages/1-introduction