aimnova.
DashboardMy LearningPaper MasteryStudy Plan

Aimnova site navigation

Stay in the loop

Get the latest study resources and updates

New features, study tips and exam insights — straight to your inbox.

IB Diploma

  • IB Past Papers
  • IB Study Notes
  • IB Question Bank
  • IB Mock Exams
  • IB Revision

IB Subjects

  • IB Math AA
  • IB Math AI
  • IB Economics
  • IB Business Management
  • IB Physics
  • IB Biology
  • View all IB subjects→

IB Past Papers

  • IB Math AA HL Past Papers
  • IB Math AA SL Past Papers
  • IB Math AI HL Past Papers
  • IB Math AI SL Past Papers
  • IB Economics HL Past Papers
  • IB Economics SL Past Papers
  • IB ESS Past Papers
  • View all past papers→

Study Resources

  • Study Notes
  • Question Bank
  • Mock Exams
  • Flashcards
  • Revision Guide
  • Exam Skills
  • Command Terms
  • Grade Calculator
  • Exam Timetable 2026

Aimnova

  • Features
  • Pricing
  • For Schools
  • For Parents
  • About Us
  • Blog
  • Contact
aimnova.

AI-powered study platform for smarter revision, past-paper analysis and examiner-style feedback.

TermsPrivacyCookies·© 2026 Aimnova. All rights reserved.8afc4e3

Aimnova is not affiliated with or endorsed by the International Baccalaureate Organization (IB).

NotesComputer Science HLTopic 6.4Recursion
Back to Computer Science HL Topics
6.4.44 min read

Recursion (Computer Science HL)

IB Computer Science • Unit 6

IB exam ready

Study like the top scorers do

Access a smart study planner, AI tutor, and exam vault — everything you need to hit your target grade.

Start Free

Contents

  • A function that calls itself
  • What the machine actually does
  • When recursion earns its place
  • Exam-style question
The big idea: A recursive function solves a problem by calling itself on a smaller version of the same problem, until it reaches a case small enough to answer outright.

Two parts, always: a base case that returns without recursing, and a recursive case that moves towards it.
Both parts, or it never stops: No base case → it recurses forever until the call stack is exhausted: a stack overflow.

A recursive case that does not get closer → same result. factorial(n) calling factorial(n) never reaches 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 with your first topic free to keep:

  • 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 Studying Free Full access to Aimnova Pro · cancel anytime
1

Each call gets a frame

2

Nothing returns until the base case

3

Then they unwind

4

The stack is finite

Why a stack, and not something else: Calls must return in exactly the reverse order they were made — the most recent first. That is last in, first out, so a stack is the only structure that fits.

This is the same call stack from B2.2, which is why the two topics connect.

Know your predicted grade

Take timed mock exams and get detailed feedback on every answer. See exactly where you're losing marks.

Try Mock Exams FreeYour first topic is free to keep • No credit card required
RecursionIteration
SuitsSelf-similar structures — trees, nested dataRepeating a fixed number of times
MemoryOne frame per levelConstant
RiskStack overflow if deepInfinite loop if the condition never changes
Reads asClose to the definition of the problemClose to the steps a machine takes
SpeedSlower — call overhead per levelUsually faster
The honest answer on factorial: Factorial and Fibonacci are taught recursively because they are easy to show, not because recursion is the right choice for them — a loop is faster and uses constant memory.

Recursion genuinely wins where the data itself is nested: traversing a tree, walking a folder structure, parsing an expression. Saying that shows judgement.

How this is tested — you must identify both parts and explain the stack cost, not just describe self-calling. It comes up two ways:

Paper 2 — working with code

  • Explain the concept of recursion, 3-4 marks
  • Identify the base case in given code
  • State one application of recursion

Paper 2 — the algorithmic-thinking question

  • Compare recursion with iteration
  • Explain why deep recursion fails
The classic trap: Saying only "a function that calls itself". That is half the definition — without a base case it never terminates, and the answer must name both parts.
IB-style questionExplain[5 marks]

Explain what recursion is, using a worked example, and state one advantage and one disadvantage against iteration.

Model answer plan

See the mark-by-mark plan — for / against / judgement, with marking guidance — in study mode.

Claim your free topic

IB Exam Questions on Recursion

Practice with IB-style questions filtered to Topic 6.4.4. Get instant AI feedback on every answer.

Practice Topic 6.4.4 QuestionsBrowse All Computer Science HL Topics

How Recursion Appears in IB Exams

Examiners use specific command terms when asking about this topic. Here's what to expect:

Define

Give the precise meaning of key terms related to Recursion.

AO1
Describe

Give a detailed account of processes or features in Recursion.

AO2
Explain

Give reasons WHY — cause and effect within Recursion.

AO3
Evaluate

Weigh strengths AND limitations of approaches in Recursion.

AO3
Discuss

Present arguments FOR and AGAINST with a balanced conclusion.

AO3

See the full IB Command Terms guide →

Related Computer Science HL Topics

Continue learning with these related topics from the same unit:

6.1.1Variables and data types
6.1.2Substrings
6.1.3Exception handling
6.1.4Debugging
View all Computer Science HL topics

Improve your exam technique

Command terms, paper structure, and mark-scheme tips for Computer Science HL

Previous
6.4.3Bubble and selection sort
Next
Tracing recursion6.4.5

4 questions to test your understanding

Reading is just the start. Students who tested themselves scored 82% on average — try IB-style questions with AI feedback.

Start FreeView All Computer Science HL Topics