Question 1121858
<br>
A recursive formula tells you how to build the sequence by giving you the first number, or the first few numbers, and telling you how to find each later number in the sequence from the earlier ones.<br>
Let me revise the notation a bit so it is easier to understand.<br>
(1) a(1) = 7<br>
This tells you the first term of the sequence ("a sub 1") is 7.<br>
(2) a(n) = a(n-1)+5 for n greater than or equal to 2<br>
This tells you that each term ("a sub n") is 5 more than the preceding term ("a sub (n-1)").<br>
So term 2 ("a sub 2") is 5 more than term 1 ("a sub (2-1)"; i.e., "a sub 1")<br>
So a(2) = a(1)+5 = 7+5 = 12.<br>
Then the recursive formula tells you the 3rd term is 5 more than the 2nd; and that the 4th term is 5 more than the 3rd; and so on.<br>
So the sequence is<br>
7, 12, 17, 22, 27, 32, 37, ...