##Lab 11 Exponential Functions This lab takes a look at different forms of exponential functions. The basic form of all exponential functions is . is called the initial value and is the growth/decay factor over a unit of time, depending on whether it's less than or greater than 1. For instance, the rate of inflation is currently 2.1% each year. So the price of a gallon of gas next year is times its current price. A function that models the value of a gallon of gas, which let's say is $2.59 right now is . If things don't change, what will a $2.59 gallon cost 10 years from now?
Create a function that models this situation and find the solution: A $45000 pickup truck depreciates at a rate of 15% a year. When will the truck be worth only half its original value?
Another common form is change over some specified unit of time. The two most popular are doubling time and half-life. These have the form and . The k-value is the time it takes to either double or halve. How does this work? Let's take a look. . . Suppose we start with $100 and are told the amount will double every 25 years. We'll create a loop to evaluate the amount for every one of the first 25 years.
Use my code with modifications to handle these situations:
You start with 200 pounds and drop to 3/4ths of this in 6 months. What's the weight after 3 months? When will the weight be cut in half?
The polar ice cap has shrunk to 95% of its size in the last 20 years. How long does it take to lose 1%?(You'll have to do a little extra calculation!. Also you can just use 1 for .)
Finally, let's look at the situation where you don't know the initial value nor do you know the growth/decay factor. All you know is that there are two points and that exponential change is occurring. F'rinstance, at the 6 year mark the value was $1000 then at the 20 year mark it was $900. The change occurred exponentially. Write a function model for this. Steps:
Find the ratio .
Now find the amount of time it took for this fractional change to take place:
We can now use the form,
We still don't know what , the initial value is. But we can use either of the points (6,1000) or (20,900) as values of and , plug in and solve for A_0. Study my code. You'll notice that I am letting SAGE do everything!
So a function model for the above situation is . Your turn, create a function model for a biological specimen that had 300 cells at the 5 minute mark and then at the 30 minute mark had grown to 8,000,000 cells. How many cells were there when the clock started? Use the model to approximate how long it takes the organism to double in size.