🚧 Setup for 5.6

This commit is contained in:
tomit4 2026-06-30 23:00:25 -07:00
parent 346332f1f2
commit a7753f443a
3 changed files with 382 additions and 0 deletions

View file

@ -143,3 +143,25 @@ the guard $G$ becomes false
is true, then the values of the algorithm variables will be as specified _____.
in the post-condition of the loop.
---
**Test Yourself**
Page 359
1. A recursive definition for a sequence consists of a _____ and _____.
2. A recurrence relation is an equation that defines each later term of a
sequence by reference to _____ in the sequence.
3. Initial conditions for a recursive definition of a sequence consist of one or
more of the _____ of the sequence.
4. To solve a problem recursively means to divide the problem into smaller
subproblems of the same type as the initial problem, to suppose _____, and to
figure out how to use the supposition to _____.
5. A crucial step for solving a problem recursively is to define a _____ in
terms of which the recurrence relation and initial conditions can be
specified.