Q:

Scientists released 5 foxes into a new habitat in year 0. Each year, there werefour times as many foxes as the year before. How many foxes were thereafter x years? Write a function to represent this scenario.

Accepted Solution

A:
Answer: [tex]f(x)= 5*4^x[/tex]Step-by-step explanation:Since every year there are four times as many foxes as the year before, every year we need to multiply the previous population by 4. This leads to having to multiply by [tex]4^{n}[/tex]after n years have gone by. So we are in the presence of a population growth that goes as an exponential function of base "4".A function f(x) that represents an exponential growth of such type can be written as:[tex]f(x)= N_0 * 4^x[/tex]where x represents the variable time in years, 4 is the multiplicative base, and [tex]N_0[/tex] is what is defined as the "initial value" of the population (in our case 5 - for the 5 foxes initially released). Notice also that when we start counting - time zero (x=0) the exponential form [tex]4^0 = 1[/tex] becomes a one (1) and the expression reduces to this initial value  [tex]N_0[/tex] (5 in our case).Therefore, the function representing this population growth is: [tex]f(x)= 5*4^x[/tex]