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.4Tracing recursion
Back to Computer Science HL Topics
6.4.54 min read

Tracing 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

  • Trace it downwards, then upwards
  • A worked trace
  • Two calls per level
  • Exam-style question
The big idea: A recursive trace has two halves. Going down, each call is made and waits. Going up, each returns a value to the call that made it.

Most lost marks come from tracing only the first half and guessing the second.
The layout that works: Write each call indented one level further than the one that made it. Leave the return value blank on the way down, and fill it in on the way back up.

The indentation is not decoration — it is what stops you losing which call you are in.

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
Nothing is added on the way down: Going down, no arithmetic happens at all — each call simply waits, holding its n.

Every addition takes place on the way up, once the base case has finally returned something to add to. Answers that add as they descend get the right answer here by luck, and the wrong one as soon as the operation is subtraction or division.

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

What changes when a function calls itself twice

  • The calls form a tree, not a line
  • The left branch is fully evaluated before the right one begins
  • The same value is computed repeatedly — fib(2) is calculated three times in fib(5)
  • Calls grow exponentially: fib(30) makes over 1.3 million calls
  • Which is why naive Fibonacci is the standard example of recursion done badly
Count the calls, not just the answer: A common question asks how many times a function is called, not what it returns. Draw the tree and count the nodes.

And say which values repeat — that is the observation the question is usually reaching for.

How this is tested — you must show the calls descending and the values returning, in a readable layout. It comes up two ways:

Paper 2 — working with code

  • Trace a recursive function and give the output, 3-5 marks
  • State the value returned by a given call
  • Count how many calls are made

Paper 2 — the algorithmic-thinking question

  • Draw the call tree for a branching recursion
  • Explain why a value is computed repeatedly
The classic trap: Tracing only downwards and then guessing. The returns are where the arithmetic happens — and with subtraction or division, adding on the way down gives a different and wrong answer.
IB-style questionTrace[5 marks]

Trace mystery(4), where mystery(n) returns 1 if n <= 1, and otherwise returns n * mystery(n - 2). State the value returned and how many calls are made.

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 Tracing recursion

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

Practice Topic 6.4.5 QuestionsBrowse All Computer Science HL Topics

How Tracing 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 Tracing recursion.

AO1
Describe

Give a detailed account of processes or features in Tracing recursion.

AO2
Explain

Give reasons WHY — cause and effect within Tracing recursion.

AO3
Evaluate

Weigh strengths AND limitations of approaches in Tracing 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.4Recursion
Next
File processing6.5.1

Make these notes count

Reading notes is just the start. Test yourself with IB-style questions and get feedback that shows you what examiners want.

Start FreeView All Computer Science HL Topics