Relationships Between Quantities Quick Check
Relationships Between Quantities Quick Check
Jeff made 2 baskets in his first basketball game and 1 more basket in his next game. Assuming he scores 1 more basket each game,
write a recursive formula to generate the sequence representing the total number of baskets Jeff made after each game. (1 point)
Of(1) = 2. f(n) = f(n-1) - 1 for n > 1
Of(1) = 1. f(n) = f(n-1) + 1 forn > 1
Of(1) = 2. f(n) = f(n-1) + 1 for n > 1
Of(1) = 1. f(n) = f(n-1) - 1 for n > 1