Write the Recursive Formula for the given sequence.

-1, -5, -25, -125, -625

term(1) = -(5)^0

term(2) = -(5)^1
term(3) = -(5)^2
..
term(n) = ....

tell my what you have

To find the recursive formula for the given sequence, we need to identify the pattern that each term follows.

Let's analyze the sequence:

Term 1: -1
Term 2: -5
Term 3: -25
Term 4: -125
Term 5: -625

We can observe that each term is obtained by multiplying the previous term by -5.

Therefore, the recursive formula for the given sequence is:

a(n) = -5 * a(n-1)

Where a(n) represents the nth term of the sequence.