Home

Tutoring

Subjects

Live Classes

Study Coach

Essay Review

On-Demand Courses

Colleges

Games


Sign up

Log in

Opening subject page...

Loading your content

Practice

  • All Subjects
  • Algebra Flashcards
  • SAT Math Practice Tests
  • Math Question of the Day
  • Live Classes
  • On-Demand Courses

Varsity Tutors

  • Find a Tutor
  • Test Prep
  • Online Classes
  • K-12 Learning
  • College Search
  • VarsityTutors.com

© 2026 Varsity Tutors. All rights reserved.

← Back to quizzes

AP Calculus BC Quiz

AP Calculus BC Quiz: Eulers Method

Practice Eulers Method in AP Calculus BC with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.

Question 1 / 12

0 of 12 answered

Using Euler’s method with h=0.2h=0.2h=0.2 for y′=1+y2y' = 1+y^2y′=1+y2, y(0)=0y(0)=0y(0)=0, approximate y(0.4)y(0.4)y(0.4).

Select an answer to continue

What this quiz covers

This quiz focuses on Eulers Method, giving you a quick way to practice the rules, question types, and explanations that matter most for AP Calculus BC.

How to use this quiz

Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.

All questions

Question 1

Using Euler’s method with h=0.2h=0.2h=0.2 for y′=1+y2y' = 1+y^2y′=1+y2, y(0)=0y(0)=0y(0)=0, approximate y(0.4)y(0.4)y(0.4).

  1. 0.400
  2. 0.408 (correct answer)
  3. 0.416
  4. 0.432
  5. 0.480

Explanation: This problem uses Euler's method for y' = 1 + y² with y(0) = 0. At (0, 0), we find y'(0) = 1 + 0² = 1, so y(0.2) ≈ 0 + 0.2(1) = 0.2. At (0.2, 0.2), the slope is y'(0.2) = 1 + (0.2)² = 1 + 0.04 = 1.04, giving y(0.4) ≈ 0.2 + 0.2(1.04) = 0.408. Students often forget to square the y-value, using y instead of y², which would give the incorrect answer 0.480. For successful Euler's method: (1) substitute current values into y' = f(x,y), (2) multiply resulting slope by step size, (3) add to current y-value, (4) repeat with updated point.

Question 2

A tank’s salt amount satisfies dSdt=4−t\frac{dS}{dt}=4-tdtdS​=4−t, S(0)=3S(0)=3S(0)=3; using Euler’s method with h=0.5h=0.5h=0.5, approximate S(1.5)S(1.5)S(1.5).

  1. 8.25 (correct answer)
  2. 7.50
  3. 8.63
  4. 8.75
  5. 7.88

Explanation: This problem involves Euler's method for approximating solutions to differential equations. Starting at t=0, S=3, the slope is 4 - 0 = 4, so the change in S is 0.5 * 4 = 2, leading to S=5 at t=0.5. Next, at t=0.5, S=5, the slope is 4 - 0.5 = 3.5, so the change in S is 0.5 * 3.5 = 1.75, leading to S=6.75 at t=1. Then, at t=1, S=6.75, the slope is 4 - 1 = 3, so the change in S is 0.5 * 3 = 1.5, leading to S=8.25 at t=1.5. A tempting distractor is 7.50, which results from incorrectly using an average slope or miscalculating steps. Here is a transferable Euler's method checklist: identify the initial conditions and step size, compute the number of steps, for each step calculate the slope at the current point, multiply by h to get delta y, add to current y, and update x by adding h.

Question 3

Using Euler’s method with h=0.5h=0.5h=0.5 for y′=x−yy' = x-yy′=x−y, y(1)=2y(1)=2y(1)=2, approximate y(2)y(2)y(2).

  1. 1.000
  2. 1.250
  3. 1.500 (correct answer)
  4. 1.750
  5. 2.000

Explanation: This problem uses Euler's method for y' = x - y with initial condition y(1) = 2. At (1, 2), we find y'(1) = 1 - 2 = -1, so y(1.5) ≈ 2 + 0.5(-1) = 1.5. At (1.5, 1.5), the slope is y'(1.5) = 1.5 - 1.5 = 0, giving y(2) ≈ 1.5 + 0.5(0) = 1.5. Students sometimes confuse the roles of x and y in the differential equation, incorrectly computing y - x instead of x - y. For accurate Euler's method: (1) carefully substitute into y' = f(x,y), (2) multiply slope by step size h, (3) add to current y-value, (4) advance x by h and repeat.

Question 4

Given dydx=x2+y2\frac{dy}{dx}=x^2+y^2dxdy​=x2+y2, y(0)=1y(0)=1y(0)=1, use Euler’s method with h=0.1h=0.1h=0.1 to approximate y(0.2)y(0.2)y(0.2).

  1. 1.2001.2001.200
  2. 1.2101.2101.210
  3. 1.2221.2221.222 (correct answer)
  4. 1.2401.2401.240
  5. 1.2441.2441.244

Explanation: This problem applies Euler's method to dy/dx = x² + y² with initial condition y(0) = 1. Using Euler's formula y_new = y_old + h·f(x_old, y_old) where f(x,y) = x² + y² and h = 0.1. Starting from (0, 1), the slope is f(0, 1) = 0² + 1² = 0 + 1 = 1, so y(0.1) = 1 + 0.1·1 = 1.1. From (0.1, 1.1), the slope is f(0.1, 1.1) = (0.1)² + (1.1)² = 0.01 + 1.21 = 1.22, giving y(0.2) = 1.1 + 0.1·1.22 = 1.222. A common mistake is forgetting to square one of the terms or computing (x+y)² instead of x² + y². For Euler's method with polynomial terms: (1) square each variable separately, (2) add the squared terms, and (3) multiply by h before adding to the previous y-value.

Question 5

Using Euler’s method with h=0.2h=0.2h=0.2 for dydx=x1+y\frac{dy}{dx}=\frac{x}{1+y}dxdy​=1+yx​, y(0)=1y(0)=1y(0)=1, approximate y(0.4)y(0.4)y(0.4).​

  1. 1.0001.0001.000
  2. 1.0201.0201.020 (correct answer)
  3. 1.0401.0401.040
  4. 1.0601.0601.060
  5. 1.0801.0801.080

Explanation: This problem uses Euler's method for dy/dx = x/(1+y) with initial condition y(0) = 1 and h = 0.2. The update formula is y_{n+1} = y_n + h·x_n/(1+y_n). Starting at (0,1): First step gives y_1 = 1 + 0.2(0)/(1+1) = 1 + 0 = 1 at x = 0.2. Second step gives y_2 = 1 + 0.2(0.2)/(1+1) = 1 + 0.2(0.2)/2 = 1 + 0.04/2 = 1 + 0.02 = 1.02 at x = 0.4. Students often make arithmetic errors with fractions or forget to use the updated y-value in the denominator. For Euler's method success: carefully evaluate rational functions at current point, multiply by step size, add to current y-value.

Question 6

Using Euler’s method, h=0.5h=0.5h=0.5, for dydx=2x−y\frac{dy}{dx}=2x-ydxdy​=2x−y, y(1)=0y(1)=0y(1)=0, approximate y(2)y(2)y(2).

  1. 1.501.501.50
  2. 1.751.751.75
  3. 2.002.002.00 (correct answer)
  4. 2.252.252.25
  5. 2.502.502.50

Explanation: Euler's method is a numerical technique for approximating solutions to differential equations by taking small steps along the tangent line. Starting at x=1, y=0, the slope is 2×1 - 0 = 2, so the next y is 0 + 0.5 × 2 = 1 at x=1.5. Then, at x=1.5, y=1, the slope is 2×1.5 - 1 = 2, so the next y is 1 + 0.5 × 2 = 2 at x=2. Thus, the approximation for y(2) is 2. A tempting distractor is 2.25, which could arise from incorrectly adding an extra factor or miscalculating the second slope, but Euler's method correctly recalculates the slope at each current point. In general, for Euler's method, follow this checklist: initialize with given x and y, compute slope using the DE at current point, update y by adding h times slope, update x by adding h, and repeat the process for the required number of steps.

Question 7

Using Euler’s method with h=0.1h=0.1h=0.1 for y′=y−x2y' = y-x^2y′=y−x2, y(0)=1y(0)=1y(0)=1, approximate y(0.2)y(0.2)y(0.2).

  1. 1.210
  2. 1.209 (correct answer)
  3. 1.189
  4. 1.200
  5. 1.220

Explanation: This problem uses Euler's method to approximate the solution to y' = y - x² with y(0) = 1. Starting at (0, 1), we find y'(0) = 1 - 0² = 1, so y(0.1) ≈ 1 + 0.1(1) = 1.1. At (0.1, 1.1), the slope is y'(0.1) = 1.1 - (0.1)² = 1.1 - 0.01 = 1.09, giving y(0.2) ≈ 1.1 + 0.1(1.09) = 1.209. Students often forget to square the x-value when computing x², mistakenly using just x instead. For Euler's method success: (1) substitute current x and y into the differential equation, (2) multiply resulting slope by h, (3) add to current y-value, (4) repeat with new point.

Question 8

A drug amount satisfies dAdt=−0.5A+1\frac{dA}{dt}=-0.5A+1dtdA​=−0.5A+1 with A(0)=4A(0)=4A(0)=4; using Euler’s method with h=0.25h=0.25h=0.25, approximate A(0.5)A(0.5)A(0.5).

  1. 3.703.703.70
  2. 3.533.533.53 (correct answer)
  3. 3.563.563.56
  4. 3.883.883.88
  5. 3.443.443.44

Explanation: This problem involves using Euler's method to approximate the solution to a differential equation. Starting at t=0 with A=4, the slope from the differential equation dA/dt=-0.5A+1 is -0.54+1=-1, so A at t=0.25 is approximated as 4+0.25(-1)=3.75. Next, at t=0.25 with A=3.75, the slope is -0.53.75+1=-0.875, so A at t=0.5 is 3.75+0.25(-0.875)≈3.531. Thus, after two steps with h=0.25, A(0.5)≈3.53. A tempting distractor like 3.70 might result from using the initial slope for both steps, giving 4+0.5*(-1)=3.5, but ignoring the slope update. To apply Euler's method generally, start with the initial condition, compute the slope using the DE at the current point, add h times that slope to get the next value, update the time by h, and repeat for the required number of steps.

Question 9

A bacteria culture satisfies dPdt=0.3P−2\frac{dP}{dt}=0.3P-2dtdP​=0.3P−2 with P(0)=10P(0)=10P(0)=10; using Euler’s method with h=1h=1h=1, approximate P(2)P(2)P(2).

  1. 12.3012.3012.30 (correct answer)
  2. 12.5012.5012.50
  3. 10.9010.9010.90
  4. 13.2013.2013.20
  5. 11.8011.8011.80

Explanation: This problem involves using Euler's method to approximate the solution to a differential equation. Starting at t=0 with P=10, the slope from the differential equation dP/dt=0.3P-2 is 0.310-2=1, so P at t=1 is approximated as 10+11=11. Next, at t=1 with P=11, the slope is 0.311-2=1.3, so P at t=2 is 11+11.3=12.3. Thus, after two steps with h=1, P(2)≈12.3. A tempting distractor like 12.50 might come from incorrectly averaging slopes or miscalculating 0.3*11 as 3.5 instead of 3.3, leading to an erroneous 11+1.5=12.5. To apply Euler's method generally, start with the initial condition, compute the slope using the DE at the current point, add h times that slope to get the next value, update the time by h, and repeat for the required number of steps.

Question 10

A concentration satisfies dCdt=t1+C\frac{dC}{dt}=\frac{t}{1+C}dtdC​=1+Ct​ with C(0)=1C(0)=1C(0)=1; using Euler’s method with h=0.5h=0.5h=0.5, approximate C(1)C(1)C(1).

  1. 1.131.131.13 (correct answer)
  2. 1.251.251.25
  3. 1.121.121.12
  4. 1.191.191.19
  5. 1.061.061.06

Explanation: This problem involves using Euler's method to approximate the solution to a differential equation. Starting at t=0 with C=1, the slope from the differential equation dCdt=t1+C\frac{dC}{dt} = \frac{t}{1+C}dtdC​=1+Ct​ is 01+1=0\frac{0}{1+1} = 01+10​=0, so C at t=0.5 is approximated as 1+0.5×0=11 + 0.5 \times 0 = 11+0.5×0=1. Next, at t=0.5 with C=1, the slope is 0.51+1=0.25\frac{0.5}{1+1} = 0.251+10.5​=0.25, so C at t=1 is 1+0.5×0.25=1.1251 + 0.5 \times 0.25 = 1.1251+0.5×0.25=1.125. Thus, after two steps with h=0.5, C(1)≈1.13C(1) \approx 1.13C(1)≈1.13 when rounded. A tempting distractor like 1.25 might come from incorrectly adding the slope without multiplying by h in the second step, giving 1+0.25=1.251 + 0.25 = 1.251+0.25=1.25. To apply Euler's method generally, start with the initial condition, compute the slope using the DE at the current point, add h times that slope to get the next value, update the time by h, and repeat for the required number of steps.

Question 11

Using Euler’s method with h=0.25h=0.25h=0.25 for y′=2x−yy' = 2x-yy′=2x−y, y(0)=0y(0)=0y(0)=0, approximate y(0.5)y(0.5)y(0.5).

  1. 0.109
  2. 0.125 (correct answer)
  3. 0.141
  4. 0.156
  5. 0.188

Explanation: This problem applies Euler's method to solve y′=2x−yy' = 2x - yy′=2x−y with y(0)=0y(0) = 0y(0)=0. Starting at (0,0)(0, 0)(0,0), we calculate y′(0)=2(0)−0=0y'(0) = 2(0) - 0 = 0y′(0)=2(0)−0=0, so y(0.25)≈0+0.25(0)=0y(0.25) \approx 0 + 0.25(0) = 0y(0.25)≈0+0.25(0)=0. At (0.25,0)(0.25, 0)(0.25,0), the slope is y′(0.25)=2(0.25)−0=0.5y'(0.25) = 2(0.25) - 0 = 0.5y′(0.25)=2(0.25)−0=0.5, giving y(0.5)≈0+0.25(0.5)=0.125y(0.5) \approx 0 + 0.25(0.5) = 0.125y(0.5)≈0+0.25(0.5)=0.125. A tempting error is to use the formula for the exact solution instead of stepping through Euler's method iteratively. Remember the Euler's method process: (1) evaluate y' at current point, (2) compute ynew=yold+h⋅y′y_{\text{new}} = y_{\text{old}} + h \cdot y'ynew​=yold​+h⋅y′, (3) update x to x + h, (4) repeat until reaching target x-value.

Question 12

Euler’s method with h=0.2h=0.2h=0.2 is applied to y′=1−yy' = 1-yy′=1−y, y(0)=0y(0)=0y(0)=0; approximate y(0.4)y(0.4)y(0.4).

  1. 0.360 (correct answer)
  2. 0.320
  3. 0.400
  4. 0.300
  5. 0.280

Explanation: This problem uses Euler's method for y′=1−yy' = 1 - yy′=1−y with y(0)=0y(0) = 0y(0)=0. Applying yn+1=yn+h⋅f(xn,yn)y_{n+1} = y_n + h \cdot f(x_n, y_n)yn+1​=yn​+h⋅f(xn​,yn​) where f(x,y)=1−yf(x,y) = 1 - yf(x,y)=1−y and h=0.2h = 0.2h=0.2, we start at (0,0). First step: y1=0+0.2(1−0)=0+0.2(1)=0.2y_1 = 0 + 0.2(1 - 0) = 0 + 0.2(1) = 0.2y1​=0+0.2(1−0)=0+0.2(1)=0.2 at x=0.2x = 0.2x=0.2. Second step: y2=0.2+0.2(1−0.2)=0.2+0.2(0.8)=0.2+0.16=0.36y_2 = 0.2 + 0.2(1 - 0.2) = 0.2 + 0.2(0.8) = 0.2 + 0.16 = 0.36y2​=0.2+0.2(1−0.2)=0.2+0.2(0.8)=0.2+0.16=0.36 at x=0.4x = 0.4x=0.4. A common error is to use the formula incorrectly, such as computing 0.2+0.2(1−0)=0.40.2 + 0.2(1 - 0) = 0.40.2+0.2(1−0)=0.4, which reuses y0y_0y0​ instead of y1y_1y1​. Euler's method checklist: always use the most recent y-value, evaluate the derivative at the current point, and systematically advance both x and y.