aimnova.
DashboardMy LearningPaper MasteryStudy Plan

Stay in the loop

Study tips, product updates, and early access to new features.

aimnova.

AI-powered IB study platform with personalised plans, instant feedback, and examiner-style marking.

IB Subjects
  • All IB Subjects
  • IB Diploma
  • IB ESS
  • IB Economics
  • IB Business Management
  • IB Math AI
  • IB Math AA
  • IB Physics
  • IB Biology
  • IB Chemistry
  • IB History
  • IB History (2028+)
  • IB Global Politics
  • IB Psychology
  • IB Philosophy
  • IB Geography
  • IB Spanish B
  • IB German B
  • IB Italian B
  • IB French B
  • IB English B
  • IB English A Lang & Lit
  • IB Spanish A Lang & Lit
  • IB French A Lang & Lit
Question Banks
  • ESS Question Bank
  • Economics Question Bank
  • Business Management Question Bank
  • Math AI Question Bank
  • Math AA Question Bank
  • Physics Question Bank
  • Biology Question Bank
  • Chemistry Question Bank
  • History Question Bank
  • History (2028+) Question Bank
  • Global Politics Question Bank
  • Psychology Question Bank
  • Philosophy Question Bank
  • Geography Question Bank
  • Spanish B Question Bank
  • German B Question Bank
  • Italian B Question Bank
  • French B Question Bank
  • English B Question Bank
  • English A Lang & Lit Question Bank
  • Spanish A Lang & Lit Question Bank
  • French A Lang & Lit Question Bank
Predicted Topics 2026
  • ESS Predictions 2026
  • Economics Predictions 2026
  • Business Management Predictions 2026
  • Math AI Predictions 2026
  • Math AA Predictions 2026
  • Physics Predictions 2026
  • Geography Predictions 2026
  • Spanish B Predictions 2026
  • German B Predictions 2026
  • Italian B Predictions 2026
  • French B Predictions 2026
  • English B Predictions 2026

Study Resources

  • Free Study Notes
  • Mock Exams
  • Revision Guide
  • Flashcards
  • Exam Skills
  • Command Terms
  • Past Paper Feedback
  • Grade Calculator
  • Exam Timetable 2026

Company

  • Features
  • Pricing
  • About Us
  • Blog
  • Contact
  • Terms
  • Privacy
  • Cookies

© 2026 Aimnova. All rights reserved.

Made with 💜 for IB students worldwide

c059741
NotesMath AA HLTopic 5.18Euler's method
Back to Math AA HL Topics
5.18.32 min read

Euler's method (Math AA HL)

IB Mathematics: Analysis and Approaches • Unit 5

Exam preparation

Practice the questions examiners actually ask

Our question bank mirrors real IB exam papers. Practice under timed conditions and track your progress across topics.

Start Practicing

Contents

  • The Euler step: follow the tangent
  • More steps, errors, and over/underestimates
Walk along short tangent lines: The differential equation dy/dx = f(x, y) hands you the gradient at every point. Euler's method uses that to step forward:

From the current point (xn, yn), the gradient is f(xn, yn). Move a small step h along that straight tangent. The new point is:

$$xn+1=xn+h,\qquad yn+1=yn+h\,f(xn,yn)$$

Repeat. You're approximating a curve by a chain of tiny straight segments — like walking a curved path one short straight stride at a time. The smaller h is, the closer you stay to the true curve.
Euler's method (h is the step size; f(x,y) = dy/dx).

IB-style question — two Euler steps

A curve satisfies dy/dx = x + y, with y = 1 when x = 0.

Use Euler's method with step size h = 0.1 to estimate y when x = 0.2.

Step by step

  1. Here f(x, y) = x + y, h = 0.1, starting at (x₀, y₀) = (0, 1). Step 1: gradient at the start is f(0, 1) = 0 + 1 = 1.
  2. Update x too: x₁ = 0 + 0.1 = 0.1. Step 2: gradient at (0.1, 1.1) is f = 0.1 + 1.1 = 1.2.
  3. Now x₂ = 0.2, which is the target.

Final answer

y(0.2) ≈ 1.22 (after two steps of size 0.1).

Free preview

This is the free notes preview

You're reading the free notes. Aimnova Pro unlocks the full study experience — and you can try it free for 7 days:

  • FlashcardsLock in vocabulary and key terms with spaced repetition.
  • Practice questionsAnswer exam-style questions and get instant AI marking.
  • Mock exams & past-paper vaultSit full mocks and see exactly how examiners award marks.
  • Personalised study planA daily plan built around your exam date and weak areas.
Start your 7-day free trial Full access to Aimnova Pro · cancel anytime
Tabulate the steps; compare to the exact answer: For several steps, keep a table with columns xn, yn and f(xn, yn) — it stops you losing track. On Paper 2/3 the GDC or a recurrence does the arithmetic.

Euler is only an estimate. If you can also solve the equation exactly, the error is

$$\text{error} = |\,y\text{exact} - y\text{Euler}\,|.$$

Over- or under-estimate? Euler follows the tangent, so it lies on the wrong side of a curving graph. If the true curve is concave up (bending upward, like y = ex), the tangents sit below it, so Euler underestimates. If the curve is concave down, the tangents sit above, so Euler overestimates.

IB-style question — three steps and the error

Continue dy/dx = x + y, y(0) = 1, h = 0.1 for one more step to estimate y(0.3). The exact solution is y = 2ex − x − 1.

Find the Euler estimate and the error at x = 0.3, and state whether Euler over- or under-estimates.

Step by step

  1. From the previous micro, y(0.2) ≈ 1.22 with x₂ = 0.2. Step 3: gradient at (0.2, 1.22) is f = 0.2 + 1.22 = 1.42.
  2. So the Euler estimate is y(0.3) ≈ 1.362.
  3. Exact value: y = 2e0.3 − 0.3 − 1 = 2(1.34986) − 1.3.
  4. Error = |exact − Euler|.
  5. The curve y = 2ex − x − 1 is concave up (y'' = 2ex > 0), so the tangents lie below it.

Final answer

y(0.3) ≈ 1.362; error ≈ 0.038; Euler underestimates (the curve is concave up).

Smaller h, better accuracy: Halving the step size h roughly halves the error (Euler's error is proportional to h). The trade-off is more steps — twice as much arithmetic. That's why Euler is a numerical tool: handy, but not exact.

Try an IB Exam Question — Free AI Feedback

Test yourself on Euler's method. Write your answer and get instant AI feedback — just like a real IB examiner.

A curve has dy/dx = √(x + y) with y(0) = 4. Use one Euler step with h = 0.25 to estimate y(0.25). [2 marks]

Related Math AA HL Topics

Continue learning with these related topics from the same unit:

5.1.1Derivative as gradient
5.10.1Reverse chain rule
5.10.2Substitution
5.11.1Definite integrals
View all Math AA HL topics

Improve your exam technique

Command terms, paper structure, and mark-scheme tips for Math AA HL

Previous
5.18.2Integrating factor & homogeneous equations
Next
Building a Maclaurin series5.19.1

11 exam-style questions ready for you

Students who practice on Aimnova improve their scores by 15% on average. Get instant feedback that shows exactly how to improve your answers.

Practice Now — FreeView All Math AA HL Topics