An equation relating a function y=y(x) to its own derivative. "First-order" means only the first derivative appears — no y′′ or higher. Solving it means finding the function y(x) itself, not just a number.
$C$arbitrary constant of a general solution
A free constant appearing in a general solution — the same role played by the constant of integration in Chapter 06, since solving a differential equation always involves at least one integration step.
$y(x_0)=y_0$initial condition
An extra piece of information — the value of y at one specific point x0 — used to pin down the constant C and select one particular solution out of the whole general-solution family.
$\text{IVP}$initial value problem
A differential equation paired with an initial condition, together demanding a single, specific solution rather than a whole family of them.
$\mu(x)$mu of x — integrating factor
A helper function, introduced in Section 04, multiplied through a linear first-order equation to make its left side collapse into a single product-rule derivative, allowing direct integration.
01 · What a Differential Equation Is
Every derivative computed in Chapters 02–17 started from a known function and produced a new one. A differential equation runs this backward: it states a relationship the derivative must satisfy, and the task is to recover the original function.
Definition — Differential Equation, Order, General and Particular Solutions
A differential equation is an equation involving an unknown function and one or more of its derivatives. Its order is the highest derivative appearing in it.
A general solution is a family of functions (typically containing an arbitrary constant C) satisfying the equation. A particular solution is one specific member of that family, usually selected by an initial condition.
Example — Verifying a solution by substitution
Is y=3e2x a solution of dxdy=2y?
Differentiate the proposed y (Chapter 02, Section 10, combined with the chain rule of Chapter 03): dxdy=3⋅2e2x=6e2x.
Compare to 2y=2(3e2x)=6e2x. Since dxdy=2y holds for every x, y=3e2xis a solution.
02 · Separable Equations
Many first-order equations can be rearranged so that every x sits on one side and every y on the other — at which point each side can be integrated separately using Chapters 06–07's tools.
Definition — Separable Equation
A first-order equation is separable if it can be written as dxdy=g(x)h(y). Rearranging (treating dxdy formally as a ratio of differentials, in the spirit of Chapter 02's Leibniz notation):
h(y)1dy=g(x)dx
Both sides can then be integrated independently.
Step-by-step — Solve $\dfrac{dy}{dx} = xy$
1
Confirm the equation is separable:xy=x⋅y splits cleanly into a function of x alone (x) times a function of y alone (y).
2
Separate the variables: divide both sides by y (assuming y=0 for now) and multiply by dx: y1dy=xdx.
3
Integrate both sides separately (Chapter 07's log rule on the left, Chapter 06's power rule on the right):∫y1dy=∫xdx⟹ln∣y∣=2x2+C1.
4
Solve for y by exponentiating both sides (Chapter 02, Section 10's inverse relationship between ln and ex):∣y∣=ex2/2+C1=eC1⋅ex2/2.
5
Rename the constant:eC1 is just some positive number; absorbing the sign from ∣y∣ lets C=±eC1 range over all nonzero reals: y=Cex2/2.
❌ Losing the y = 0 solution when dividing by y
Step 2 above divided both sides by y, silently assuming y=0.
Why it breaks:y=0 (the constant zero function) also satisfies the original equation dxdy=xy, since dxd[0]=0 and x⋅0=0 for every x — both sides equal 0. But y=0 can never be produced by y=Cex2/2 for any constant C, since ex2/2>0 always, so Cex2/2=0 only if C=0and the exponential vanishes — which it never does.
Consequence: dividing by an expression that could be zero can silently discard a valid solution. The complete solution set here is y=Cex2/2 for any constant C, includingC=0 (which reproduces the lost y=0 solution as a limiting case) — in this particular equation the lost solution happens to be recoverable by allowing C=0, but that must be checked, never assumed automatically.
03 · Initial Value Problems
A general solution is a whole family of curves. An initial condition selects exactly one.
Step-by-step — Solve the IVP $\dfrac{dy}{dx}=xy$, $y(0)=5$
1
Start from the general solution found in Section 02:y=Cex2/2.
2
Substitute the initial condition x=0, y=5:5=Ce02/2=Ce0=C(1)=C.
3
Conclude C=5, and write the particular solution:y=5ex2/2.
04 · Linear First-Order Equations and the Integrating Factor
Not every first-order equation separates. A different, broader class — linear first-order equations — has its own dedicated method.
Definition — Linear First-Order Equation and Integrating Factor
A first-order equation is linear if it can be written as
dxdy+P(x)y=Q(x)
Multiplying both sides by the integrating factorμ(x)=e∫P(x)dx makes the left side collapse into a single derivative:
dxd[μ(x)y]=μ(x)Q(x)
Why this particular μ(x) works
By the product rule (Chapter 02) and the chain rule (Chapter 03), dxd[μy]=μ′y+μy′=μ(μμ′)y+μy′. Since μ=e∫Pdx, differentiating gives μ′=P(x)μ (Chapter 03's chain rule: differentiating the exponent ∫Pdx brings down P(x) by FTC Part 1, Chapter 06), so μμ′=P(x). Substituting: dxd[μy]=μPy+μy′=μ(y′+Py) — exactly μ times the left side of the original equation, which is why multiplying through by μ turns the sum y′+Py into the single collapsed derivative dxd[μy].
Step-by-step — Solve $\dfrac{dy}{dx} + 2y = 6$
1
Identify P(x) and Q(x): matching the standard form, P(x)=2 (a constant), Q(x)=6.
2
Compute the integrating factor:μ(x)=e∫2dx=e2x (Chapter 06 power rule for integration, with the arbitrary constant of integration dropped, since any one antiderivative works here — the same freedom used with FTC Part 2 in Chapter 06).
3
Multiply both sides of the original equation by μ(x)=e2x:e2xdxdy+2e2xy=6e2x.
4
Recognize the left side as a collapsed derivative (Section 04's formula):dxd[e2xy]=6e2x.
5
Integrate both sides with respect to x (Chapter 06, 07):e2xy=∫6e2xdx=3e2x+C (u-substitution, Chapter 07, with u=2x).
❌ Forgetting to multiply Q(x) by the integrating factor too
On the same equation, a common slip: multiplying the left side by μ(x)=e2x correctly, but leaving the right side as plain 6 instead of 6e2x — writing dxd[e2xy]=6.
Why it breaks: the integrating factor is multiplied through the entire equation, both sides — it isn't a rewriting trick applied only to the left side. Skipping the right side breaks the equality: the left side genuinely equals 6e2x after substitution (step 3), not 6.
Consequence: integrating the wrong right side gives e2xy=6x+C⟹y=6xe−2x+Ce−2x — plugging this back into the original equation does not satisfy y′+2y=6 (differentiating and simplifying leaves leftover x-dependent terms that don't cancel), confirming the error. Every term on both sides must be multiplied by μ(x).
05 · Application — Exponential Growth and Decay
Definition — Exponential Growth/Decay Equation
The separable equation dtdy=ky (rate of change proportional to current amount) has general solution y=y0ekt, where y0=y(0).
Step-by-step — Derive the solution and apply it to a decaying investment balance
1
Separate variables (Section 02's method):y1dy=kdt.
2
Integrate both sides:ln∣y∣=kt+C1⟹y=Cekt (same steps as Section 02's worked example, with x2/2 replaced by kt).
3
Apply the initial condition y(0)=y0:y0=Ce0=C, so y=y0ekt.
4
Apply to a balance B(t) starting at 10,000 dollars, shrinking at continuous rate k=−0.03 (a 3% continuous outflow):B(t)=10,000e−0.03t.
5
Evaluate after 5 years:B(5)=10,000e−0.15≈10,000(0.8607)≈8607 dollars.
06 · Exercises
EXERCISE 18.1
Separate the variables, integrate each side using Chapter 06/07 tools, then solve explicitly for y.
Find the general solution first, then use the given point to solve for the constant.
dxdy=yx, y(0)=4. From Exercise 18.1, y2=x2+C. At x=0,y=4: 16=0+C⟹C=16. Particular solution: y2=x2+16, i.e. y=x2+16 (taking the positive root to match y(0)=4>0).
Solve the initial value problem dxdy=yx, y(0)=4.
EXERCISE 18.3
Identify P(x) and Q(x) in the standard linear form, compute the integrating factor, then multiply through and integrate.
Determine which specific value of y makes both sides of the original equation equal to zero, independent of any algebraic rearrangement.
For dxdy=xy (Section 02), y=0 satisfies the equation directly: dxd[0]=0 and x(0)=0, both sides match for every x. Checking whether the general solution y=Cex2/2 captures it: setting C=0 gives y=0 exactly. So the lost solution is recovered as the C=0 case here — but this recovery is not automatic in every separable equation and must always be checked separately.
For the equation dxdy=xy from Section 02, verify directly that y=0 is a solution, and check whether it is captured by the general solution family y=Cex2/2.
EXERCISE 18.5
This is the exponential growth/decay equation from Section 05 — identify k from the given continuous rate and apply the solution formula directly.
A quantity grows according to dtdQ=0.08Q, Q(0)=2000. By Section 05, Q(t)=2000e0.08t. At t=10: Q(10)=2000e0.8≈2000(2.2255)≈4451.
A quantity satisfies dtdQ=0.08Q with Q(0)=2000. Find Q(10).
EXERCISE 18.6
Recognize the equation as linear first-order in standard form, find the integrating factor, and solve; then apply the initial condition.
A bond's price P(t) pays continuous coupon income while decaying toward face value: dtdP+0.05P=5, P(0)=80. μ(t)=e0.05t. dtd[e0.05tP]=5e0.05t. Integrate: e0.05tP=0.055e0.05t+C=100e0.05t+C. Solve: P=100+Ce−0.05t. Apply P(0)=80: 80=100+C⟹C=−20. Particular solution: P(t)=100−20e−0.05t — the price rises from 80 toward a long-run value of 100 as t→∞.
A bond's price follows dtdP+0.05P=5 with P(0)=80. Solve for P(t) and describe its long-run behavior as t→∞.
07 · Chapter Summary
Concept
Formula / Rule
Order
Highest derivative appearing in the equation
General vs. particular solution
Family with constant C vs. one member fixed by an initial condition
Separable equation
dxdy=g(x)h(y); integrate h1dy=gdx separately
Initial value problem
Equation + y(x0)=y0; solves for C
Linear first-order form
y′+P(x)y=Q(x)
Integrating factor
μ(x)=e∫P(x)dx; collapses left side to dxd[μy]
Exponential growth/decay
dtdy=ky⟹y=y0ekt
Next: Chapter 19 — Differential Equations: Second Order and Systems, which extends these methods to equations involving y′′ and to multiple unknown functions changing together.