Practice Sequence in Math
Use these practice problems to test your method after reviewing the concept explanation and worked examples.
Quick Recap
An ordered list of numbers generated by a rule, where each number has a specific position (first, second, third,...).
A pattern of numbers: first term, second term, third term, and so on.
Showing a random 20 of 50 problems.
Example 1
easyWhat is the next term in ?
Example 2
challengeTrace: ; ; ; ; ; OUTPUT .
Example 3
mediumFind a formula for the th term of and use it to find the 8th term.
Example 4
mediumDetermine whether converges or diverges.
Example 5
easyFind the 4th term of the sequence .
Example 6
mediumIf you reorder `open file; read file; close file` to `read; open; close`, what happens at runtime?
Example 7
mediumTrace: ; ; ; ; OUTPUT .
Example 8
mediumDetermine whether the sequence converges or diverges. If it converges, find the limit.
Example 9
mediumFor the sequence , what is the difference ?
Example 10
mediumThe sequence gives . Does it converge?
Example 11
hardA statement using appears at line 3; is assigned at line 7. Will the program work as written? Why or why not?
Example 12
hardTrace: ; ; ; ; ; . Final ?
Example 13
easyIs a sequence or a series?
Example 14
mediumTrace: ; ; swap (no temp): ; ; . Final ?
Example 15
mediumTrace: ; ; ; ; OUTPUT .
Example 16
mediumA program reads two numbers, prints their sum, then their product. Write the sequence of 4 steps in plain pseudocode order.
Example 17
mediumOrder so that account balance prints correctly: (1) print balance, (2) deposit = 50, (3) balance = balance + deposit, (4) balance = 100. Give the order.
Example 18
challengeThe Fibonacci sequence is with . Show approaches .
Example 19
easyIs a valid sequence? What is its limit?
Example 20
easyTrace: ; ; . What is ?