233k views
4 votes
Jason is playing a trivia game with his friends. At the end of each round, his score updates to the square of 1 less than the previous round’s score. If he has 8 points in the first round, which of the following recursive formulas can be used to determine his score at the end of future rounds? Assume that the number of rounds is unlimited, and n is the number of rounds.

2 Answers

5 votes

Answer:

8+n^2

Explanation:

User Rsmoorthy
by
5.8k points
6 votes

Answer:

f(n+1)=(f[n]-1)^2, where f(1)=8

Explanation:

"it appears your explanation includes a link" so you don't get an explanation

User Whisperstream
by
5.1k points