Can You Create a Function that Triples Every 7 Starting at 20?

  • Thread starter Thread starter jared89
  • Start date Start date
  • Tags Tags
    Function
jared89
Messages
1
Reaction score
0
write a function that starts at 20 and triples every 7
 
Physics news on Phys.org
I'm sure you have just learned about exponential functions!

Utilize that knowledge to find a solution to your problem.
 
Hello jared89, welcome to the forum

You could use the exponential function in a general form and start fitting it to the two conditions you have, however there is a slightly more advanced way. Write out the two conditions as:

f(0)=20
f(7x)=2f(x)

Take the derivative of the second one and use in it the original again. You will end up with a first order differential equation giving as solution the exponential function. Using the first equation as boundary gives then the function you are looking for.

Can you do this?
 
Back
Top