2.6.2 Exponential Growth and Decay Models¶
Understanding and applying exponential growth and decay functions in real-world contexts such as population, radioactive decay, and compound interest.
定义¶
Exponential growth and decay models are mathematical functions used to describe situations where quantities increase or decrease at rates proportional to their current value. These models are expressed in the form \(N(t) = N_0 a^t\) or \(N(t) = N_0 e^{kt}\), where \(N(t)\) represents the quantity at time \(t\), \(N_0\) is the initial quantity, \(a\) is the base (growth/decay factor), \(k\) is the continuous growth/decay rate, and \(e\) is Euler's number (approximately 2.718). Exponential growth occurs when \(a > 1\) or \(k > 0\), while exponential decay occurs when \(0 < a < 1\) or \(k < 0\). These models are fundamental in describing real-world phenomena including population growth, radioactive decay, bacterial reproduction, cooling of objects, and compound interest calculations.
核心公式¶
- \(N(t) = N_0 a^t\)
- \(N(t) = N_0 e^{kt}\)
- \(a = e^k\) or \(k = \ln(a)\)
- \(t_{1/2} = \frac{\ln(2)}{k}\) (half-life formula)
- \(A(t) = P\left(1 + \frac{r}{n}\right)^{nt}\) (compound interest)
- \(A(t) = Pe^{rt}\) (continuous compound interest)
易错点¶
- ⚠️ ["Confusing the growth/decay factor \(a\) with the rate \(r\): students often use \(N(t) = N_0(1+r)^t\) when they should use \(N(t) = N_0 a^t\) where \(a = 1+r\) for growth or \(a = 1-r\) for decay", "Incorrectly converting between exponential forms: failing to properly use \(k = \ln(a)\) when switching between \(N(t) = N_0 a^t\) and \(N(t) = N_0 e^{kt}\), or making sign errors with negative decay rates", "Misinterpreting the half-life or doubling time: not recognizing that these are fixed time intervals independent of the initial quantity, or incorrectly calculating them using the wrong formula", "Forgetting to account for the compounding frequency in compound interest problems: using annual rate \(r\) directly instead of dividing by the number of compounding periods \(n\), or confusing discrete compounding with continuous compounding"]