Unit 7: Differential Equations

Differential equations as rules of change (and how to check solutions)

A differential equation is an equation that relates an unknown function to one or more of its derivatives. In AP Calculus BC, you almost always see first-order differential equations, where the highest derivative is the first derivative. This connects naturally to earlier ideas like related rates: when variables aren’t constant, you often model how one quantity changes with respect to another using a derivative.

A typical first-order differential equation looks like this:

dydt=f(t,y)\frac{dy}{dt}=f(t,y)

This is different from an ordinary “solve for yy” algebra problem. You are not given y(t)y(t) directly—you are given information about how yy changes, and your job is to recover a function that matches that change.

Why calculus cares: differential equations model change

Many real situations are naturally described by rates.

  • A population changes at a rate depending on the current population.
  • A tank’s volume changes at a rate depending on inflow and outflow.
  • A quantity decays at a rate proportional to how much is present.

Calculus is the language of change, so differential equations are how you turn “change descriptions” into actual functions.

Solutions, general solutions, and particular solutions

A solution to a differential equation is a function that makes the equation true for all relevant inputs.

For example, if

dydt=3y\frac{dy}{dt}=3y

then

y(t)=Ce3ty(t)=Ce^{3t}

is a family of solutions (for any constant CC). You can verify by differentiating:

ddt(Ce3t)=3Ce3t=3y\frac{d}{dt}(Ce^{3t})=3Ce^{3t}=3y

That family is the general solution because it contains infinitely many functions.

To pick out one specific function, you need an initial condition, such as y(0)=5y(0)=5. A differential equation together with an initial condition is an initial value problem (IVP).

With y(0)=5y(0)=5:

5=Ce05=Ce^{0}

so C=5C=5 and the particular solution is

y(t)=5e3ty(t)=5e^{3t}

Implicit solutions are still solutions

Not every solution is easily written in the form “y=y= explicit formula.” Often you end up with an implicit solution, such as

lny=3t+C\ln|y|=3t+C

That is still a valid solution because it correctly describes the relationship between yy and tt.

Checking a proposed solution

A very common skill is: given a differential equation and a candidate function, decide whether it is a solution.

Method: compute the derivative from the candidate, then substitute into the differential equation and see if both sides match.

Example 1: verify a solution

Claim: y(t)=2ety(t)=2e^{-t} solves

dydt=y\frac{dy}{dt}=-y

Differentiate:

dydt=2et\frac{dy}{dt}=-2e^{-t}

Compute y-y:

y=2et-y=-2e^{-t}

They match, so it is a solution.

Example 2: use an initial condition

Solve the IVP:

dydt=y\frac{dy}{dt}=-y

y(0)=6y(0)=6

From the general solution y=Cety=Ce^{-t}, plug in t=0t=0:

6=Ce06=Ce^{0}

So C=6C=6 and

y(t)=6ety(t)=6e^{-t}

Common meaning of notation in this unit

In AP problems, the independent variable might be xx or tt. The dependent variable might be yy, PP (population), or QQ (quantity). The derivative might be written several ways.

MeaningCommon notations
derivative of yy with respect to xxdydx\frac{dy}{dx}, yy'
derivative of yy with respect to ttdydt\frac{dy}{dt}
differential equation in “rate form”dydt=f(t,y)\frac{dy}{dt}=f(t,y)
Exam Focus
  • Typical question patterns:
    • “Show that y=y=\dots is a solution to dydx=\frac{dy}{dx}=\dots.”
    • “Find the particular solution given y(t0)=y0y(t_0)=y_0.”
    • “Interpret dydt=f(t,y)\frac{dy}{dt}=f(t,y) in context (what do variables and the rate mean?).”
  • Common mistakes:
    • Treating the differential equation like an algebraic equation and trying to “solve for yy” without using calculus.
    • Forgetting the constant of integration (or losing it when manipulating logarithms).
    • Plugging the initial condition into the differential equation instead of into the solved solution form.

Slope fields (direction fields) and qualitative behavior

A slope field (also called a direction field) is a visual way to understand solutions to a first-order differential equation without solving it algebraically.

Suppose you have

dydx=f(x,y)\frac{dy}{dx}=f(x,y)

At any point (x,y)(x,y), the differential equation tells you the slope of the solution curve passing through that point: the slope is f(x,y)f(x,y). A slope field is made by drawing a small line segment at many points, each with slope f(x,y)f(x,y).

Constructing a slope field

To construct a slope field, you repeatedly plug in the coordinates of a point (its xx-value, its yy-value, or both) into the right-hand side of the differential equation and draw a short segment with that slope.

For example, for

dydx=x\frac{dy}{dx}=x

the slope only depends on xx, so along any vertical line (same xx), all segments have the same slope. In particular, at x=1x=-1 the slope is 1-1, so every point with x=1x=-1 gets a segment with slope 1-1.

Sketching a solution curve on a slope field

The AP exam may ask you to sketch a solution curve through a given initial point. You do this by “flowing” with the short slope segments: the solution curve should be tangent to the field everywhere.

Because this is drawn by hand, it does not have to be perfect. The key is that your curve should not cross the tiny segments abruptly or head in a direction that contradicts the indicated slope.

Why slope fields matter

Slope fields are useful because not every differential equation is easy to solve with algebraic methods. Even when you can solve, a slope field helps you understand behavior such as increasing vs decreasing, leveling off, approaching an equilibrium, and sensitivity to initial conditions.

How to read patterns in a slope field

When you look at a slope field, focus on:

  • where slopes are positive (solution curves rise) vs negative (solution curves fall),
  • where slopes are near zero (solution curves flatten),
  • whether slopes depend mainly on xx, mainly on yy, or on both.

If dydx\frac{dy}{dx} depends only on xx, then the slope is the same along vertical lines (same xx).

If dydx\frac{dy}{dx} depends only on yy, then the slope is the same along horizontal lines (same yy).

Isoclines (lines of constant slope)

An isocline is a curve where the slope value is constant.

For example, if

dydx=xy\frac{dy}{dx}=x-y

then “slope equals 00” means

xy=0x-y=0

so the isocline for slope 00 is

y=xy=x

Along that line, the segments are horizontal.

Equilibrium (constant) solutions

An equilibrium solution is a constant solution y=cy=c such that

dydx=0\frac{dy}{dx}=0

whenever y=cy=c.

In many AP contexts, the differential equation is autonomous:

dydt=g(y)\frac{dy}{dt}=g(y)

Equilibria occur where g(y)=0g(y)=0. If you start exactly at an equilibrium value, you stay there.

Stability idea (qualitative)

Even without formal stability theory, you can reason:

  • if solutions nearby move toward the equilibrium, it’s stable (attracting),
  • if solutions nearby move away, it’s unstable (repelling).

You infer this from the sign of dydt\frac{dy}{dt} just above and just below the equilibrium level.

Example 1: reading behavior from an autonomous DE

Consider

dydt=y(2y)\frac{dy}{dt}=y(2-y)

Equilibria occur when

y(2y)=0y(2-y)=0

So y=0y=0 and y=2y=2 are equilibrium solutions.

Analyze the sign:

  • If 0<y<20<y<2, then dydt>0\frac{dy}{dt}>0 so solutions increase.
  • If y>2y>2, then dydt<0\frac{dy}{dt}<0 so solutions decrease.
  • If y<0y<0, then dydt<0\frac{dy}{dt}<0 so solutions decrease further.

So solutions between 00 and 22 rise toward 22, and solutions above 22 fall toward 22, suggesting y=2y=2 is stable. Near y=0y=0, small positive yy increases away from 00, so y=0y=0 is unstable.

Example 2: matching a slope field to a differential equation

If a slope field shows that slopes are identical along horizontal lines, then dydx\frac{dy}{dx} likely depends only on yy. If it shows identical slopes along vertical lines, it likely depends only on xx. This pattern recognition is often enough to eliminate wrong answer choices on multiple-choice questions.

Exam Focus
  • Typical question patterns:
    • “Sketch the solution curve through (x0,y0)(x_0,y_0) on the given slope field.”
    • “Identify equilibrium solutions and describe long-term behavior.”
    • “Which differential equation could produce this slope field?”
  • Common mistakes:
    • Drawing a solution curve that crosses slope segments instead of following their direction.
    • Missing that equilibria occur where slope is zero (horizontal segments across a line or curve).
    • Confusing dependence on xx vs dependence on yy when interpreting repeated patterns.
    • Drawing a solution curve with sudden, unnatural direction changes instead of smoothly following the local tangent directions.

Euler’s method (numerical solution of an IVP)

Many differential equations cannot be solved neatly with algebra. Even when they can, numerical methods are essential in applications. Euler’s method is the main numerical method in AP Calculus BC.

Suppose you have an IVP:

dydx=f(x,y)\frac{dy}{dx}=f(x,y)

y(x0)=y0y(x_0)=y_0

Euler’s method approximates the solution by stepping forward in small increments of xx, using the differential equation to estimate how much yy changes.

The key idea: “tangent line stepping”

At the point (xn,yn)(x_n,y_n), the differential equation gives the slope:

m=f(xn,yn)m=f(x_n,y_n)

For a small step hh in xx, a tangent line approximation gives:

Δymh\Delta y\approx mh

So the update rules are:

xn+1=xn+hx_{n+1}=x_n+h

yn+1=yn+hf(xn,yn)y_{n+1}=y_n+hf(x_n,y_n)

Why step size matters

Euler’s method is not exact; it accumulates error.

  • Smaller hh usually gives better accuracy.
  • Larger hh can drift significantly away from the true solution.

On AP problems, you’re usually told what step size to use, and you must follow it carefully.

Organizing work: tables

Most Euler’s method work is easiest in a table with columns for xnx_n, yny_n, and f(xn,yn)f(x_n,y_n).

Example 1: one-step Euler approximation

Approximate y(0.2)y(0.2) for

dydx=x+y\frac{dy}{dx}=x+y

y(0)=1y(0)=1

using step size h=0.2h=0.2.

Start: x0=0x_0=0, y0=1y_0=1.

Compute slope:

f(x0,y0)=0+1=1f(x_0,y_0)=0+1=1

Update:

y1=y0+hf(x0,y0)=1+0.2(1)=1.2y_1=y_0+hf(x_0,y_0)=1+0.2(1)=1.2

So y(0.2)1.2y(0.2)\approx 1.2.

Example 2: multiple steps

Approximate y(0.4)y(0.4) for the same IVP with h=0.2h=0.2.

We have (x1,y1)=(0.2,1.2)(x_1,y_1)=(0.2,1.2).

Compute the next slope:

f(x1,y1)=0.2+1.2=1.4f(x_1,y_1)=0.2+1.2=1.4

Update:

y2=y1+0.2(1.4)=1.2+0.28=1.48y_2=y_1+0.2(1.4)=1.2+0.28=1.48

So y(0.4)1.48y(0.4)\approx 1.48.

Interpreting Euler’s method graphically

If you plot the points Euler generates and connect them with line segments, you get a piecewise linear approximation to the true solution curve. This also connects to slope fields: at each step, Euler uses the slope at the left endpoint (xn,yn)(x_n,y_n).

Typical AP-style details that matter
  • Rounding: If instructed to round to three decimals each step, do so consistently.
  • Step direction: You can step forward (positive hh) or backward (negative hh).
  • Units in context: Interpret yny_n as the approximate quantity after nn steps.
Exam Focus
  • Typical question patterns:
    • “Use Euler’s method with step size hh to approximate y(x)y(x) at a given value.”
    • “Use a slope field plus Euler steps to compare approximations.”
    • “Compare two Euler approximations (different step sizes) and reason which is more accurate.”
  • Common mistakes:
    • Using f(xn+1,yn+1)f(x_{n+1},y_{n+1}) instead of f(xn,yn)f(x_n,y_n).
    • Forgetting to update xx each step, especially when the problem is written in terms of tt.
    • Arithmetic drift: one small arithmetic error early ruins all later values.

Separable differential equations (solving by separating variables)

The most important algebraic solving technique in this unit is separation of variables. A differential equation is separable if you can rewrite it so that all yy terms are on one side and all xx (or tt) terms are on the other.

A common separable form is:

dydx=g(x)h(y)\frac{dy}{dx}=g(x)h(y)

When the equation is separable, you can often “solve for the original function” by taking antiderivatives of both sides after separating. This is the core idea behind many AP differential equation problems.

A helpful checklist: SIPPY

A memory trick for separable/IVP problems is SIPPY:

  • S: Separate (get dydy and dxdx on different sides)
  • I: Integrate (take antiderivatives)
  • P: Plus C (include the constant of integration)
  • P: Plug in your initial condition
  • Y: Y equals (solve for yy explicitly if the problem asks)
Why separation works

The derivative dydx\frac{dy}{dx} describes how small changes relate. When the equation factors into an xx-part and a yy-part, you can separate the relationship so that integrating both sides accumulates total change.

The standard process (with meaning)
  1. Start with

dydx=g(x)h(y)\frac{dy}{dx}=g(x)h(y)

  1. Rewrite as

1h(y)dydx=g(x)\frac{1}{h(y)}\frac{dy}{dx}=g(x)

  1. Treat the notation as indicating multiplication by dxdx:

1h(y)dy=g(x)dx\frac{1}{h(y)}dy=g(x)dx

  1. Integrate both sides:

1h(y)dy=g(x)dx\int \frac{1}{h(y)}dy=\int g(x)dx

  1. Add a constant (one constant is enough):

1h(y)dy=g(x)dx+C\int \frac{1}{h(y)}dy=\int g(x)dx+C

  1. Use the initial condition to solve for CC.

After integrating, you might have an implicit equation in xx and yy. That is fine unless the problem explicitly asks you to solve for yy.

Example 1: basic separable DE

Solve:

dydx=xy\frac{dy}{dx}=xy

Separate:

1ydy=xdx\frac{1}{y}dy=xdx

Integrate:

1ydy=xdx\int \frac{1}{y}dy=\int xdx

So

lny=x22+C\ln|y|=\frac{x^2}{2}+C

Exponentiate and absorb constants:

y=Cex22y=Ce^{\frac{x^2}{2}}

Example 2: separable IVP with an implicit step

Solve:

dydx=x1+y2\frac{dy}{dx}=\frac{x}{1+y^2}

y(0)=1y(0)=1

Separate:

(1+y2)dy=xdx(1+y^2)dy=xdx

Integrate:

(1+y2)dy=xdx\int (1+y^2)dy=\int xdx

So

y+y33=x22+Cy+\frac{y^3}{3}=\frac{x^2}{2}+C

Use y(0)=1y(0)=1:

1+13=C1+\frac{1}{3}=C

So

C=43C=\frac{4}{3}

A perfectly acceptable particular solution is the implicit form:

y+y33=x22+43y+\frac{y^3}{3}=\frac{x^2}{2}+\frac{4}{3}

Example 3: SIPPY in action (separate, integrate, plus C, plug in, solve for y)

Solve the IVP:

dydx=4xy\frac{dy}{dx}=\frac{4x}{y}

y(0)=5y(0)=5

Separate:

ydy=4xdxy\,dy=4x\,dx

Integrate:

ydy=4xdx\int y\,dy=\int 4x\,dx

So

y22=2x2+C\frac{y^2}{2}=2x^2+C

Plug in x=0x=0 and y=5y=5:

252=C\frac{25}{2}=C

Thus

y22=2x2+252\frac{y^2}{2}=2x^2+\frac{25}{2}

Multiply by 2:

y2=4x2+25y^2=4x^2+25

Solve for yy and use the initial condition to choose the correct branch. Since y(0)=5y(0)=5 is positive, the particular solution is

y=4x2+25y=\sqrt{4x^2+25}

Constant solutions can be lost if you divide by a variable

If you divide by a variable expression (like yy), you might accidentally discard the case where that expression is zero.

Example: with

dydx=xy\frac{dy}{dx}=xy

dividing by yy assumes y0y\neq 0, but y=0y=0 is also a solution. In this particular example, the family y=Cex22y=Ce^{\frac{x^2}{2}} still includes y=0y=0 when C=0C=0, but it’s a good habit to quickly check for constant solutions.

When separation is not possible

If you cannot algebraically isolate all yy terms with dydy and all xx terms with dxdx, separation won’t work. In this unit, you are not expected to use more advanced methods (like integrating factors).

Exam Focus
  • Typical question patterns:
    • “Solve the differential equation by separation of variables and apply the initial condition.”
    • “Find an implicit solution and use it to compute yy at a specific xx.”
    • “Determine whether a differential equation is separable and explain.”
  • Common mistakes:
    • Forgetting the constant of integration or mishandling it when combining logs and exponentials.
    • Separating incorrectly (especially with expressions like 1+y21+y^2 in denominators).
    • Solving for CC using the wrong point (mixing up x0x_0 and y0y_0).

Exponential growth and decay as differential equations

A key modeling idea is: the rate is proportional to the amount present. In differential equation form:

dQdt=kQ\frac{dQ}{dt}=kQ

Here Q(t)Q(t) is the quantity at time tt, and kk is a constant.

  • If k>0k>0, you get growth.
  • If k<0k<0, you get decay.
Why this model is everywhere

This model appears whenever each “unit” of the quantity contributes equally to change, such as population growth with unlimited resources (simplified), radioactive decay, and continuously compounded interest.

Solving the model (separation)

Separate and integrate:

1QdQ=kdt\frac{1}{Q}dQ=kdt

lnQ=kt+C\ln|Q|=kt+C

So

Q=CektQ=Ce^{kt}

If Q(0)=Q0Q(0)=Q_0, then

Q(t)=Q0ektQ(t)=Q_0e^{kt}

Doubling time and half-life

If k>0k>0, the **doubling time** TT satisfies Q(T)=2Q0Q(T)=2Q_0:

T=ln2kT=\frac{\ln 2}{k}

If k<0k<0, the **half-life** TT satisfies Q(T)=12Q0Q(T)=\frac{1}{2}Q_0:

T=ln(1/2)kT=\frac{\ln(1/2)}{k}

Because ln(1/2)\ln(1/2) and kk are both negative, TT is positive.

Example 1: find k from information

A population follows dPdt=kP\frac{dP}{dt}=kP and P(0)=500P(0)=500. If P(3)=800P(3)=800, find kk.

Using P(t)=500ektP(t)=500e^{kt}:

800=500e3k800=500e^{3k}

ln(85)=3k\ln\left(\frac{8}{5}\right)=3k

k=13ln(85)k=\frac{1}{3}\ln\left(\frac{8}{5}\right)

Example 2: interpret units

If tt is measured in years, then kk has units of “per year.” The exponent ktkt must be unitless.

Exam Focus
  • Typical question patterns:
    • “Write a differential equation for exponential growth or decay and solve for Q(t)Q(t).”
    • “Given two data points, find kk and then predict another value.”
    • “Find doubling time or half-life from kk or from a solved model.”
  • Common mistakes:
    • Sign errors: decay means k<0k<0.
    • Solving for kk but forgetting the logarithm step (or taking a log incorrectly).
    • Confusing doubling time formulas when kk is negative.

Logistic differential equations: modeling with a carrying capacity

Exponential growth assumes unlimited resources, but many real populations slow down as they approach a limit. The logistic model is:

dPdt=rP(1PK)\frac{dP}{dt}=rP\left(1-\frac{P}{K}\right)

where r>0r>0 is the intrinsic growth rate and K>0K>0 is the carrying capacity.

What the factors mean

The structure matters:

  • PP causes growth to scale with population.
  • (1PK)\left(1-\frac{P}{K}\right) reduces growth as PP approaches KK.

If P=KP=K, then dPdt=0\frac{dP}{dt}=0. If P>KP>K, the factor becomes negative and the population decreases back toward KK.

Equilibrium solutions and long-term behavior

Set the right-hand side to zero:

rP(1PK)=0rP\left(1-\frac{P}{K}\right)=0

Equilibria:

P=0P=0

P=KP=K

For positive initial population, solutions tend to approach KK over time.

The logistic curve shape and maximum growth

The rate

dPdt=rP(1PK)\frac{dP}{dt}=rP\left(1-\frac{P}{K}\right)

is a downward-opening quadratic in PP, so it is maximized at

P=K2P=\frac{K}{2}

Logistic growth is fastest at half the carrying capacity.

Example 1: interpret a logistic differential equation

Suppose a fish population satisfies

dPdt=0.4P(1P2000)\frac{dP}{dt}=0.4P\left(1-\frac{P}{2000}\right)

Then K=2000K=2000 fish. When PP is small, growth is approximately exponential with rate about 0.4P0.4P. If P=2000P=2000, then dPdt=0\frac{dP}{dt}=0. If P>2000P>2000, then dPdt<0\frac{dP}{dt}<0 and the population declines.

Example 2: compute the rate at a given population

With the same model, if P=500P=500:

dPdt=0.4(500)(15002000)\frac{dP}{dt}=0.4(500)\left(1-\frac{500}{2000}\right)

So

dPdt=150\frac{dP}{dt}=150

Common misconception: K is not a hard ceiling at every moment

The population can exceed KK depending on the initial condition. What is true is that when P>KP>K, the rate becomes negative, pushing the solution back down toward KK.

Exam Focus
  • Typical question patterns:
    • “Identify the carrying capacity and equilibria from a logistic differential equation.”
    • “Determine whether PP is increasing or decreasing for given population values.”
    • “Find when growth is fastest (often by identifying P=K/2P=K/2).”
  • Common mistakes:
    • Misreading the carrying capacity: in rP(1PK)rP\left(1-\frac{P}{K}\right), KK is in the denominator inside the parentheses.
    • Forgetting that P=0P=0 is also an equilibrium solution.
    • Assuming the solution reaches KK in finite time; in the continuous model, it approaches KK asymptotically.

Solving the logistic differential equation (separation and partial fractions)

You may be asked to solve a logistic differential equation explicitly, especially with an initial condition. The strategy is still separation of variables, but integration requires partial fractions.

Start with

dPdt=rP(1PK)\frac{dP}{dt}=rP\left(1-\frac{P}{K}\right)

Step 1: rewrite to a separable form

Rewrite

1PK=KPK1-\frac{P}{K}=\frac{K-P}{K}

So

dPdt=rKP(KP)\frac{dP}{dt}=\frac{r}{K}P(K-P)

Separate:

dPP(KP)=rKdt\frac{dP}{P(K-P)}=\frac{r}{K}dt

Step 2: partial fraction decomposition

Decompose:

1P(KP)=AP+BKP\frac{1}{P(K-P)}=\frac{A}{P}+\frac{B}{K-P}

Solve:

1=A(KP)+BP1=A(K-P)+BP

Setting P=0P=0 gives A=1KA=\frac{1}{K}. Setting P=KP=K gives B=1KB=\frac{1}{K}. Therefore,

1P(KP)=1K(1P+1KP)\frac{1}{P(K-P)}=\frac{1}{K}\left(\frac{1}{P}+\frac{1}{K-P}\right)

Step 3: integrate both sides

Substitute and simplify:

(1P+1KP)dP=rdt\left(\frac{1}{P}+\frac{1}{K-P}\right)dP=rdt

Integrate carefully; the second term introduces a negative sign under substitution:

lnPlnKP=rt+C\ln|P|-\ln|K-P|=rt+C

Combine logs:

lnPKP=rt+C\ln\left|\frac{P}{K-P}\right|=rt+C

Exponentiate and absorb sign into the constant:

PKP=Cert\frac{P}{K-P}=Ce^{rt}

Solve for PP:

P=CKert1+CertP=\frac{CKe^{rt}}{1+Ce^{rt}}

A common equivalent form is

P=K1+AertP=\frac{K}{1+Ae^{-rt}}

Step 4: apply an initial condition

If P(0)=P0P(0)=P_0, then

P0=K1+AP_0=\frac{K}{1+A}

So

A=KP0P0A=\frac{K-P_0}{P_0}

and the particular solution can be written as

P(t)=K1+(KP0P0)ertP(t)=\frac{K}{1+\left(\frac{K-P_0}{P_0}\right)e^{-rt}}

Example: solve a logistic IVP

Solve:

dPdt=0.5P(1P1000)\frac{dP}{dt}=0.5P\left(1-\frac{P}{1000}\right)

P(0)=100P(0)=100

Here r=0.5r=0.5, K=1000K=1000, and P0=100P_0=100.

A=1000100100=9A=\frac{1000-100}{100}=9

So

P(t)=10001+9e0.5tP(t)=\frac{1000}{1+9e^{-0.5t}}

Solving for time when a population reaches a value

Given

P(t)=K1+AertP(t)=\frac{K}{1+Ae^{-rt}}

and a target P(t)=P1P(t)=P_1, solve:

P1=K1+AertP_1=\frac{K}{1+Ae^{-rt}}

Isolate the exponential:

ert=KP11Ae^{-rt}=\frac{\frac{K}{P_1}-1}{A}

Then take logs:

t=1rln(KP11A)t=-\frac{1}{r}\ln\left(\frac{\frac{K}{P_1}-1}{A}\right)

A common algebra trap: sign mistakes in the log step

Because logistic solutions involve erte^{-rt}, it’s easy to lose a negative sign when taking logs. A strong habit is to isolate the exponential completely first, then take the natural log, then solve for tt.

Exam Focus
  • Typical question patterns:
    • “Solve the logistic differential equation and express P(t)P(t) in terms of rr, KK, and P0P_0.”
    • “Given a logistic model, find tt when the population reaches a specified value.”
    • “Use the explicit solution to determine a limit as tt\to\infty (long-term population).”
  • Common mistakes:
    • Incorrect partial fractions for 1P(KP)\frac{1}{P(K-P)} or forgetting the negative sign from integrating 1KP\frac{1}{K-P}.
    • Losing track of constants when switching between CC and AA.
    • Solving for PP but leaving an expression that does not simplify to a standard logistic form, then misapplying the initial condition.