Study Guide

Particular solutions with initial conditions

AP Calculus ABΒ· AP Calculus AB CED β€” Differential EquationsΒ· 14 min read

1. Core Concepts: General vs Particular Solutionsβ˜…β˜…β˜†β˜†β˜†β± 3 min

A differential equation relates an unknown function to its derivatives. The general solution to a first-order differential equation includes an arbitrary constant of integration (), representing an infinite family of functions that all satisfy the original equation. A particular solution is a single solution from that infinite family that satisfies an extra constraint: an initial condition, which gives the value of the unknown function at a specific input.

Initial conditions are written in standard notation , meaning when , . This topic accounts for 6-12% of total AP Calculus AB exam score, appearing on both multiple-choice and free-response sections, often in applied contexts like population growth or cooling.

πŸ“˜ Definition

Initial Value Problem

A problem that combines a first-order differential equation with an initial condition that specifies the value of the unknown function at a given input, requiring a particular solution as the answer.

2. Particular Solutions for Indefinite Integralsβ˜…β˜…β˜†β˜†β˜†β± 4 min

The most basic form of this problem arises when you are given that depends only on , and you need to find the exact original function that passes through a given point. The 4-step process is: 1. Integrate the derivative to get a general solution with ; 2. Substitute the initial condition into the general solution; 3. Solve algebraically for ; 4. Substitute back to get the particular solution.

πŸ“ Worked Example

Given , and the initial condition , find the particular solution for .

  1. 1

    Integrate both sides with respect to to get the general solution:

  2. 2
    y=∫(3x2+2sin⁑x)dx=x3βˆ’2cos⁑x+Cy = \int (3x^2 + 2\sin x) dx = x^3 - 2\cos x + C
  3. 3

    Substitute the initial condition into the general solution:

  4. 4
    4=(0)3βˆ’2cos⁑(0)+C4 = (0)^3 - 2\cos(0) + C
  5. 5

    Simplify and solve for , using :

  6. 6
    4=0βˆ’2(1)+Cβ€…β€ŠβŸΉβ€…β€ŠC=64 = 0 - 2(1) + C \implies C = 6
  7. 7

    Substitute back to get the final particular solution:

  8. 8
    y=x3βˆ’2cos⁑x+6y = x^3 - 2\cos x + 6

Exam tip:

Always verify your particular solution by plugging it back into the original derivative equation and checking the initial condition. This takes 10 seconds and catches common arithmetic errors.

3. Particular Solutions for Separable Differential Equationsβ˜…β˜…β˜…β˜†β˜†β± 4 min

Most AP exam problems asking for particular solutions are separable first-order equations. A separable equation can be rearranged into , with all -terms on one side and all -terms on the other. After integrating both sides, you get a general solution with a single combined constant, then use the initial condition to solve for the constant to get your particular solution.

πŸ“ Worked Example

Find the particular solution to the differential equation with initial condition .

  1. 1

    Separate variables, assuming :

  2. 2
    1ydy=x3dx\frac{1}{y} dy = \frac{x}{3} dx
  3. 3

    Integrate both sides to get the implicit general solution:

  4. 4
    ∫1ydy=∫x3dxβ€…β€ŠβŸΉβ€…β€Šln⁑∣y∣=x26+C1\int \frac{1}{y} dy = \int \frac{x}{3} dx \implies \ln|y| = \frac{x^2}{6} + C_1
  5. 5

    Exponentiate both sides and absorb the constant and absolute value into a new :

  6. 6
    ∣y∣=ex26+C1=eC1ex26β€…β€ŠβŸΉβ€…β€Šy=Cex26|y| = e^{\frac{x^2}{6} + C_1} = e^{C_1} e^{\frac{x^2}{6}} \implies y = C e^{\frac{x^2}{6}}
  7. 7

    Substitute the initial condition and solve for :

  8. 8
    5=Ce226=Ce23β€…β€ŠβŸΉβ€…β€ŠC=5eβˆ’235 = C e^{\frac{2^2}{6}} = C e^{\frac{2}{3}} \implies C = 5 e^{-\frac{2}{3}}
  9. 9

    Combine exponents to get the final particular solution:

  10. 10
    y=5eβˆ’23ex26=5ex2βˆ’46y = 5 e^{-\frac{2}{3}} e^{\frac{x^2}{6}} = 5 e^{\frac{x^2 - 4}{6}}

Exam tip:

Always combine constants into a single constant early when integrating separable equations. Never keep two separate constants for the left and right integrals, this leads to unnecessary errors.

4. Applied Initial Value Problemsβ˜…β˜…β˜…β˜†β˜†β± 3 min

On the AP exam, particular solutions are almost always embedded in real-world contexts, where the initial condition has a practical physical meaning. For example, in population growth it is the starting population at , in cooling problems it is the starting temperature. The solution process is identical to abstract problems, but you must include correct units and interpret your solution in context if asked.

πŸ“ Worked Example

A bacteria culture grows at a rate proportional to its current size. At time hours, the population is 1200 bacteria. The growth rate is given by , where is population at time . Find the particular solution for , then calculate the population after 10 hours.

  1. 1

    Separate variables:

  2. 2
    1PdP=0.02dt\frac{1}{P} dP = 0.02 dt
  3. 3

    Integrate and simplify to get the general solution:

  4. 4
    ln⁑∣P∣=0.02t+Cβ€…β€ŠβŸΉβ€…β€ŠP(t)=Ce0.02t\ln|P| = 0.02 t + C \implies P(t) = C e^{0.02 t}
  5. 5

    Apply the initial condition to solve for :

  6. 6
    1200=Ce0β€…β€ŠβŸΉβ€…β€ŠC=12001200 = C e^{0} \implies C = 1200
  7. 7

    Write the particular solution and evaluate at :

  8. 8
    P(t)=1200e0.02tβ€…β€ŠβŸΉβ€…β€ŠP(10)=1200e0.2β‰ˆ1466P(t) = 1200 e^{0.02 t} \implies P(10) = 1200 e^{0.2} \approx 1466

Exam tip:

Most applied problems give the initial condition at , which makes solving for very simple. Always confirm the initial time, some problems give an initial condition at non-zero to test attention to detail.

5. Common Pitfalls

Wrong move:

Integrating as without moving to the left side.

Why:

Students confuse separable DEs with derivatives that only depend on , and incorrectly treat as a constant when integrating.

Correct move:

Always separate all terms to the left side and all terms to the right side before integrating any separable differential equation.

Wrong move:

Leaving the absolute value in the final solution after integrating , leading to an incorrect negative constant when initial is positive.

Why:

Students forget that the absolute value can be absorbed into the constant, so they incorrectly restrict to positive values.

Correct move:

After integrating , rewrite , where can be positive or negative to match the sign of the initial .

Wrong move:

Plugging the initial condition into the derivative instead of the general solution for .

Why:

Students rush the problem and misread what the initial condition describes, especially when the problem also gives an initial value for the derivative.

Correct move:

Always confirm: if the condition gives the value of at , substitute into the general solution for , not the derivative.

Wrong move:

Getting instead of when solving .

Why:

Students flip the exponent incorrectly when isolating due to poor recall of exponent rules.

Correct move:

Isolate on one side of the equation before simplifying, and double-check the sign of the exponent.

Wrong move:

Leaving the arbitrary constant in the final particular solution, instead of substituting the solved value of .

Why:

Students forget the question asks for a particular solution, especially in multi-part FRQs where one part asks for a general solution and the next asks for a particular.

Correct move:

Re-read the question after solving to confirm it asks for a particular solution, and that you have substituted the calculated value of .

6. Quick Reference Cheatsheet

Category

Formula / Process

Notes

Initial Condition Notation

Gives the value of function at input

General 4-Step Process

  1. Integrate for general solution +
    2. Substitute initial condition
    3. Solve for
    4. Substitute back

Works for all first-order initial value problems on AP Calculus AB

Basic Particular Solution

is added outside the antiderivative

Separable DE Form

Must separate variables before integrating

Exponential Simplification

Absorb and absolute value into new constant

Applied Initial Condition

For , for most growth/decay models

Explicit vs Implicit Solutions

Explicit: ; Implicit: relation between and

AP exam usually requires explicit unless stated otherwise

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· MCQ

    Find particular solution from derivative

  • 2022 Β· FRQ

    Population growth with initial condition

  • 2021 Β· MCQ

    Solve separable DE with initial condition

What's Next

Particular solutions with initial conditions are the foundation for all applied differential equation problems on the AP Calculus AB exam. Mastering this skill is required to earn full credit on most free-response questions involving differential equations. Immediately after mastering this topic, you will move on to modeling exponential growth and decay, as well as other contextual differential equation models like Newton's Law of Cooling. Without being able to correctly solve for particular solutions from initial conditions, you cannot get full credit on questions that ask for population projections, temperature predictions, or position functions from velocity. This topic also reinforces core concepts of integration and the Fundamental Theorem of Calculus.