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

  • Context: High School 
  • Thread starter Thread starter jared89
  • Start date Start date
  • Tags Tags
    Function
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
jared89
Messages
1
Reaction score
0
write a function that starts at 20 and triples every 7
 
Physics news on Phys.org
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:

[tex]f(0)=20[/tex]
[tex]f(7x)=2f(x)[/tex]

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?