asked 178k views
4 votes
A tree farm has 70 rows of trees. The first row has 25 trees, the second

row has 30 trees, the third row has 35 trees, and so on. Let n be the
number of the row.
Write a function f(n) to represent the number of total trees in the nth
row. (gmm) pls help

1 Answer

0 votes

Explanation:

The function is:


f(n) = 25 + 5 * (n - 1) \\ n \geqslant 1

answered
User Liedman
by
8.5k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.