When you find the general antiderivative of $f(x)$, you get a family of curves $F(x) + C$. But what if you need ONE specific curve?
An initial value problem gives you extra information—typically the value of the function at a specific point—that lets you determine $C$ and find the unique solution.
This is the bridge between pure calculus and real-world problems. In physics, you know the laws of motion (derivatives), but to predict where a ball will be at time $t$, you need to know where it started (initial condition).
| Property | Value |
|---|---|
| Concept | Antiderivatives |
| Chapter | 3.9 |
| Difficulty | Intermediate |
| Time | ~20 minutes |
An initial value problem (IVP) consists of:
Standard form: $$f'(x) = g(x), \quad f(a) = b$$
This says: "Find $f$ whose derivative is $g$, and which passes through the point $(a, b)$."
Step 1: Find the general antiderivative. $$f(x) = G(x) + C$$ where $G$ is any particular antiderivative of $g$.
Step 2: Use the initial condition to find $C$. $$f(a) = b \quad \Rightarrow \quad G(a) + C = b \quad \Rightarrow \quad C = b - G(a)$$
Step 3: Write the particular solution. $$f(x) = G(x) + C \text{ (with the specific value of } C \text{)}$$
Problem: Find $f$ if $f'(x) = 3x^2$ and $f(1) = 5$.
Solution:
Step 1: General antiderivative of $3x^2$: $$f(x) = x^3 + C$$
Step 2: Use $f(1) = 5$: $$f(1) = (1)^3 + C = 1 + C = 5$$ $$C = 4$$
Step 3: Particular solution: $$f(x) = x^3 + 4$$
Check: $f'(x) = 3x^2$ ✓ and $f(1) = 1 + 4 = 5$ ✓
When given $f''(x)$, you need to antidifferentiate twice and use two initial conditions.
Example: Find $f$ if $f''(x) = 6x$, $f(0) = 2$, and $f'(0) = -1$.
Solution:
Step 1: First antidifferentiation (get $f'$): $$f'(x) = 3x^2 + C_1$$
Use $f'(0) = -1$: $$f'(0) = 0 + C_1 = -1 \quad \Rightarrow \quad C_1 = -1$$ $$f'(x) = 3x^2 - 1$$
Step 2: Second antidifferentiation (get $f$): $$f(x) = x^3 - x + C_2$$
Use $f(0) = 2$: $$f(0) = 0 - 0 + C_2 = 2 \quad \Rightarrow \quad C_2 = 2$$
Step 3: Particular solution: $$f(x) = x^3 - x + 2$$
The general antiderivative $F(x) + C$ represents a family of curves. The initial condition $f(a) = b$ selects the ONE curve that passes through the point $(a, b)$.
y
↑ ╱ Some antiderivative
│ ╱
│ ╱
│ ●───── Point (a, b) picks this curve
│╱
└──────────→ x
Find $f(x)$ if $f'(x) = 4x$ and $f(0) = 3$.
Find $f(x)$ if $f'(x) = x^2 - 4$ and $f(2) = 1$.
Find $f(x)$ if $f'(x) = \cos x + 2$ and $f(\pi) = 4$.
Find $f(x)$ if $f''(x) = 12x - 6$, $f(0) = 5$, and $f'(0) = -2$.
Find $f(x)$ if $f''(x) = \sin x$, $f(0) = 1$, and $f(\pi) = 0$.
Note: The conditions are at different $x$-values!
Can two different functions both satisfy $f'(x) = 2x$ and $f(0) = 5$? Explain.
Why does a second-order IVP (given $f''$) require two initial conditions, while a first-order IVP requires only one?
You're told $f'(x) = 1$ for all $x$, and $f(2) = 7$. Describe the graph of $f$ in plain English.
The initial condition is like a GPS coordinate:
The general antiderivative gives you a family of parallel curves (for first-order) or similar curves (for higher-order). They all have the same shape but are shifted.
The initial condition is like giving GPS coordinates: "The curve passes through this exact point." That pins down exactly which curve you want from the infinite family.
Without the initial condition, you're lost in a sea of possibilities. With it, you have a unique destination.
| Previous | Up | Next |
|---|---|---|
| Antidifferentiation Rules | Skills Index | Rectilinear Motion |
Last updated: 2026-01-22