U7.5 Euler's Method
Master Euler's method for AP Calculus BC: iterate y_{n+1}=yₙ+h·f(xₙ,yₙ) to approximate differential equation solutions, avoid step errors, and ace FRQ questions.
What you'll do in this lesson
A voice-first session with the Crimsora tutor on U7.5 Euler's Method, then targeted practice and FRQs — with the tutor adapting to where you get stuck.
What this lesson covers
Sometimes a differential equation is too messy to solve exactly, but you still need a number. Euler's method is calculus's answer: it uses the slope at a known point to take small, straight-line steps toward the solution. Given and a starting point, you march forward one step at a time.
This is a BC-only topic that appears in both multiple-choice and free-response questions. The math is just repeated arithmetic, so the points come from staying organized and not making sign or step-size errors. In this lesson you'll learn the iteration formula, why it works geometrically, how to run it in a table, and the common traps the exam loves to set.
This is a BC-only topic that appears in both multiple-choice and free-response questions. The math is just repeated arithmetic, so the points come from staying organized and not making sign or step-size errors. In this lesson you'll learn the iteration formula, why it works geometrically, how to run it in a table, and the common traps the exam loves to set.
The Core Idea and Formula
Euler's method approximates the solution to a differential equation with initial condition . Because the derivative tells you the slope of the solution curve at any point, you can start at the known point and follow the tangent line a short horizontal distance , then repeat from the new point.
The iteration formula isand the -values advance by , where is the step size. In words: new equals old plus (step size)(slope at the old point). This is exactly the linear approximation applied one step at a time.
The reason it works is the local linearity of differentiable functions: over a tiny interval, the curve looks nearly straight, so following the tangent is a decent estimate. Chaining these tangent segments builds a polygonal path that tracks the true solution. Smaller means more steps, more accuracy, but more arithmetic. The exam usually gives you two or three steps with a friendly like or .
The iteration formula isand the -values advance by , where is the step size. In words: new equals old plus (step size)(slope at the old point). This is exactly the linear approximation applied one step at a time.
The reason it works is the local linearity of differentiable functions: over a tiny interval, the curve looks nearly straight, so following the tangent is a decent estimate. Chaining these tangent segments builds a polygonal path that tracks the true solution. Smaller means more steps, more accuracy, but more arithmetic. The exam usually gives you two or three steps with a friendly like or .
Running Euler's Method in a Table
Organization wins points. Set up a table with columns for , , the slope , and the update . Fill one row per step so you never lose track of which point supplies the slope.
Suppose with and , approximating .
After two steps, and . Notice the slope is always evaluated at the current row's point, not the new one. A frequent error is computing the slope with the updated before finishing the step, which corrupts every later value.
The number of steps equals the total change in divided by . To go from to with takes two steps; with it takes four. Always confirm you land exactly on the target -value.
Suppose with and , approximating .
| slope | slope | ||||
|---|---|---|---|---|---|
| 0 | 0 | 1 | 1 | 0.5 | 1.5 |
| 1 | 0.5 | 1.5 | 2 | 1 | 2.5 |
The number of steps equals the total change in divided by . To go from to with takes two steps; with it takes four. Always confirm you land exactly on the target -value.
Overestimate, Underestimate, and Error
The exam often asks whether Euler's method over- or underestimates the true value. The tangent-line reasoning from concavity answers this. If the solution curve is concave up on the interval, its tangent lines lie below the curve, so each Euler step lands too low and the method underestimates. If the curve is concave down, tangent lines lie above and Euler overestimates.
To determine concavity, differentiate the differential equation. For , apply the chain rule: . On a region where this is positive, expect underestimation.
Error shrinks as shrinks. Euler's method has error roughly proportional to (first order), so halving the step size roughly halves the error. You will not compute exact error on the exam, but you should be able to say a smaller step size gives a more accurate approximation because each straight segment deviates less from the true curve.
| Concavity of solution | Tangent line position | Euler estimate |
|---|---|---|
| Concave up () | below curve | underestimate |
| Concave down () | above curve | overestimate |
Error shrinks as shrinks. Euler's method has error roughly proportional to (first order), so halving the step size roughly halves the error. You will not compute exact error on the exam, but you should be able to say a smaller step size gives a more accurate approximation because each straight segment deviates less from the true curve.
How the Exam Tests It and Common Traps
On multiple-choice, expect a two-step Euler problem with clean numbers where distractors come from arithmetic slips. On free-response, a differential equation problem often bundles Euler's method with slope fields (U7.3) and separation of variables (U7.6): one part asks for two Euler steps, another asks for the exact solution or a slope-field sketch.
Top traps to avoid. First, using the wrong point for the slope, always plug in the current . Second, forgetting to multiply by ; the increment is , not just . Third, miscounting steps and stopping at the wrong . Fourth, sign errors when or is negative, Euler works backward with negative too. Fifth, rounding too early; keep full precision until the final answer.
A disciplined approach: write the formula, build the table, compute slopes exactly, and box the final . Show every step, partial credit on FRQs rewards a visible, correct process even if one arithmetic value is off. If asked to justify over/underestimation, cite the sign of , not just intuition.
Top traps to avoid. First, using the wrong point for the slope, always plug in the current . Second, forgetting to multiply by ; the increment is , not just . Third, miscounting steps and stopping at the wrong . Fourth, sign errors when or is negative, Euler works backward with negative too. Fifth, rounding too early; keep full precision until the final answer.
A disciplined approach: write the formula, build the table, compute slopes exactly, and box the final . Show every step, partial credit on FRQs rewards a visible, correct process even if one arithmetic value is off. If asked to justify over/underestimation, cite the sign of , not just intuition.
Key terms
- Euler's method.
- A numerical technique that approximates the solution of a differential equation by stepping along tangent lines using .
- Step size ().
- The fixed horizontal increment between successive -values; smaller generally yields a more accurate approximation.
- Iteration.
- Repeating the update formula, using each new point as the starting point for the next step.
- Initial condition.
- A given point that anchors the approximation and provides the starting row of the table.
- Local linearity.
- The property that a differentiable curve closely resembles its tangent line over a small interval, which justifies Euler's method.
- Concavity test for error.
- Using the sign of to decide whether tangent-based Euler estimates fall below (concave up, underestimate) or above (concave down, overestimate) the true curve.
Worked example
Let with initial condition . Use Euler's method with step size to approximate . Then state whether the approximation likely over- or underestimates the true value, justifying with concavity.
Start at and take two steps of size to reach .
Step 1: slope at is . Update: . New .
Step 2: slope at is . Update: . New .
So .
For concavity, differentiate the equation: . At the starting point , , and it stays positive over this short interval. Since the solution is concave up, its tangent lines lie below the curve, so Euler's method underestimates the true value .
Step 1: slope at is . Update: . New .
Step 2: slope at is . Update: . New .
So .
For concavity, differentiate the equation: . At the starting point , , and it stays positive over this short interval. Since the solution is concave up, its tangent lines lie below the curve, so Euler's method underestimates the true value .
Practice questions
Given with , use Euler's method with to approximate .
Answer:
Step 1 at : slope , so at . Step 2 at : slope , so at . The key skill is evaluating each slope at the current point and multiplying by .
A solution to is known to be concave down over the interval used. Explain what this implies about a Euler's method approximation on that interval and why.
Answer: It implies Euler's method overestimates the true solution value.
When a curve is concave down, , and every tangent line lies above the curve. Euler's method follows tangent segments, so each step lands slightly above where the true solution goes. Accumulated over multiple steps, the polygonal Euler path sits above the actual curve, producing an overestimate. This concavity argument, not mere guessing, is what earns justification points on free-response questions.
For with , perform one Euler step with and give the approximation for .
Answer:
The slope at is . One step gives at . A single step is just the tangent-line (linear) approximation, which shows Euler's method reduces to local linearization when only one step is taken.
FAQ
- Is Euler's method on the AP Calculus BC exam but not AB?
- Yes. Euler's method is a BC-only topic. AB students study slope fields and separation of variables but are not required to perform Euler's iteration.
- How many steps should I expect on an exam problem?
- Usually two or three steps with a convenient step size such as , , or . The arithmetic is kept manageable so the focus stays on applying the iteration correctly, not on heavy computation.
- How do I know if my answer is an overestimate or underestimate?
- Find the second derivative by differentiating the differential equation. If (concave up) the estimate is too low, an underestimate; if (concave down) it is too high, an overestimate. Always justify with concavity, not intuition.
- What happens if the step size is negative?
- A negative simply steps backward in , letting you approximate a solution value to the left of the initial condition. The same formula applies; just be careful with signs.
Learn this with a teacher, not a page
The Crimsora tutor teaches U7.5 Euler's Method live — explaining on a whiteboard, asking you questions, and adapting to where you get stuck.