π Example 11.2.1. A bouncing ball. πA ball is dropped from a height of 100 cm. On each bounce, it returns to 75% of its previous height. π πLet hk be the height in centimetres after the kth bounce. Then h0=100 and the recurrence relation is ,.hk=3hkβ14,kβ₯1. πThe terms of the sequence are .100,75,56.25,42.1875,β¦.
π Example 11.2.2. Factorial. π πSet ,a0=1, and let ak=kakβ1 for .kβ₯1. Then the terms of the sequence are .1,1,2,6,24,120,β¦.
π Example 11.2.3. Fibonacci sequence. π πThe sequence 0,1,1,2,3,5,8,13,21,34,β¦ πcan be defined recursively by ,a0=0, ,a1=1, and ,.ak=akβ1+akβ2,kβ₯2.
π Example 11.2.4. A sequence of sets. π πDefine a sequence {Ak} from P(N) recursively as follows. Let ,A0=β , and take the recurrence relation to be ,.Ak=Akβ1βͺ{k},kβ₯1. πThen the terms of the sequence are .β ,{1},{1,2},{1,2,3},β¦,{1,2,β¦,k},β¦.