{"id":41,"date":"2025-10-28T18:36:25","date_gmt":"2025-10-28T22:36:25","guid":{"rendered":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/?post_type=chapter&#038;p=41"},"modified":"2025-12-24T13:25:43","modified_gmt":"2025-12-24T18:25:43","slug":"understanding-difficulties-of-recursive-algorithm-comprehension-are-all-types-potentially-troublesome-for-students","status":"publish","type":"chapter","link":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/chapter\/understanding-difficulties-of-recursive-algorithm-comprehension-are-all-types-potentially-troublesome-for-students\/","title":{"raw":"Understanding Difficulties of Recursive Algorithm Comprehension: Are All Types Potentially Troublesome for Students?","rendered":"Understanding Difficulties of Recursive Algorithm Comprehension: Are All Types Potentially Troublesome for Students?"},"content":{"raw":"<h1>Abstract<\/h1>\r\nRecursive algorithms involve functions calling themselves until a base case is reached. Tail Recursion (TR), where the recursive call is the final action, closely resembles iteration and tends to be more accessible for students. In contrast, Non-Tail Recursion (NTR) requires managing function states on the call stack, introducing greater cognitive complexity. Addressing questions in Threshold Concept (TC) theory, such as the nature of \u201ctroublesome knowledge\u201d and the role of \u201climinal space\u201d in learning, the study investigates how TR and NTR differ in their conceptual demand and whether they exhibit the troublesome characteristics of a TC in computer science education. Findings reveal that NTR strongly aligns with TC characteristics due to its abstract and challenging nature, while TR does not. By distinguishing which form of recursion embodies the troublesome and liminal traits of TC, the study advances TC research, showing that not all manifestations of a concept are equally troublesome. It provides empirical evidence for practitioners interested in designing effective pedagogies.\r\n\r\n<em>Keywords<\/em>: troublesome knowledge, Computer Science education, recursion, tail recursion, non-tail recursion, liminal Space; iteration\r\n\r\n&nbsp;\r\n\r\nDespite its central role in computer science curricula, recursion continues to present significant challenges for students. Its reliance on understanding call stacks (how function calls are stored and resumed), abstract control flow (the order in which execution moves across calls), and base cases (the condition that stops further calls), often pushes students to fall back on iterative approaches, even when recursion is the more natural solution. While prior studies have established recursion\u2019s difficulty (Kiesler, 2022; Sanders &amp; Scholtz, 2012), only limited work has explored how its different forms, particularly Tail Recursion (TR) and Non-tail recursion (NTR) vary in cognitive demand for novice learners. Recent research by Baron and Feitelson (2024) highlights that comprehension is especially hindered in NTR and that TR may be more accessible to learners than NTR, yet the evidence for this distinction in pre-university student populations remains sparse. Our study responds to that gap by comparing student performance and reasoning across TR, NTR, and their iterative equivalents. By linking these differences to threshold concept theory, the research seeks to clarify which forms of recursion may represent a true threshold for learners.\r\n<h1>Literature Review<\/h1>\r\nRay Land (CELatElon, 2019) described threshold concept (TC) as one that allows computer science students who are stuck when learning a concept and their teachers who get stuck teaching it, to get out of the \u201cstuck space.\u201d This is also referred to as the liminal space \u2013 a transitional phase where learners are in an \u201cin-between\u201d state, struggle with new and challenging ideas before fully understanding them (Land et al, 2014; Irving et al., 2019). This phase is often marked by troublesomeness, where learners encounter concepts that are difficult to understand, counter-intuitive, or even alien to their previous understanding. Some studies suggest that recursion may meet the criteria of a TC (Boustedt et al., 2007).\r\n\r\nThis troublesome nature is a key aspect of TCs, as it is through navigating these challenging liminal spaces that learners achieve a deeper, transformative shift in understanding (Peter et al. 2014). When students are stuck in the liminal space, they may experience frustration and will usually take different paths to attain full understanding (Eckerdal et al., 2007) or as Meyer and Land (2003) puts it, the \u201crite of passage.\u201d\r\n\r\nRecursion often ranks among the most cognitively demanding programming concepts for computer science students (Fellah and Bandi, 2018; Nzemeke et al. 2024). It can be particularly challenging when significant computation occurs after the recursive call, as in NTR. While problems that naturally fit the TR form are generally easier for students to understand, forcing a transformation into TR can introduce additional cognitive load and sometimes obscure the algorithm\u2019s underlying intent, making comprehension more difficult (Baron &amp; Feitelson, 2024).\r\n\r\nA common way to investigate novice students\u2019 difficulties with recursion is to compare it with iteration, which is often viewed as more straightforward and intuitive (Endres et al., 2021). Benander et al. (1996), in an experiment testing whether recursion is indeed harder to understand, found a statistically significant difference in comprehension favouring recursion, though they called for further empirical research in this area. Mirolo (2012) similarly challenged the assumption, arguing that problem difficulty depends more on task characteristics than on the programming paradigm itself. Endres et al. (2021) add that problem framing strongly influences outcomes: students performed better on iterative versions of non-branching numerical tasks but excelled with recursion for array classification.\r\n\r\nThere are also suggestions that the sequencing of recursion and iteration instruction with regards to when they are taught, is closely related to how well students understand these concepts. Teaching iteration first is often justified for its broader applicability and lower cognitive demand (Kessler &amp; Anderson, 1986; Wiedenbeck, 1989). Nzemeke et al. (2024) provide complementary insights from the viewpoint of teachers. They found that recursion is typically introduced to students after iteration, and most of the surveyed teachers perceived it as a more challenging concept for students. It may be argued that while teaching iteration (before recursion) help students understand the idea of repetition, it may unintentionally reinforce loop-based mental models that hinder comprehension of NTR. Turbak et al. (1999) report that teaching recursion before iteration improved mastery of both, and Maiorana et al. (2021) recommend introducing both early to promote direct comparison and deeper algorithmic understanding. Guzdial (2018) argues that these concerns remain relevant and should be revisited through modern replication studies.\r\n<h1>Research Question<\/h1>\r\nHow do learners experience recursion as a potential Threshold Concept, and in what ways do Tail and Non-Tail recursion differ in the liminal struggles and pathways of conceptual progression?\r\n<h1>Research Methods and Data Collection<\/h1>\r\nUsing a mixed-method approach, 41 students were surveyed to gather quantitative and qualitative data on their experiences learning recursion. The students targeted all study computer science in Key Stage 4 (students aged 14 to 15) and Key Stage 5 (students aged 16 to 18) in a secondary school and Sixth Form College in England, United Kingdom. They have learned core programming concepts including recursion, sequence, iteration, and selection, functional and procedural paradigms, along with techniques such as parameter passing, using arguments, and returning values. They also understand the purpose of algorithms and have been taught how to construct and trace them for a given task.\r\n\r\nA random name selector software was used to put students into two groups (Group A and Group B). Random assignment of students to groups plays a crucial role in allowing statistical tests to fairly compare outcomes between different groups. It's the most effective strategy for achieving such group equivalence, guarding against selection bias (Skelly et al., 2012).\r\n\r\nStudents in Group\u202fA traced TR and NTR algorithms, while those in Group\u202fB solved their equivalent iterative versions. These parallel tasks enabled comparison of conceptual understanding and problem\u2011solving strategies without bias. By pairing each recursive algorithm with an iterative counterpart performing the same core operations, the design isolated recursion as the variable of interest. This control ensured differences in performance reflected the nature of recursion rather than task complexity, enabling evaluation of whether recursion, relative to iteration, exhibits the troublesome characteristics of a TC. Quantitative measures (e.g., base\u2011case identification, output prediction, difficulty ratings) and qualitative evidence (e.g., justifications of responses) were designed to help reveal misconceptions and cognitive approaches.\r\n\r\nEthical approval from the City St George\u2019s university's ethics committee was obtained.\r\n<h1>Analysing Key Questions Used<\/h1>\r\nIn addition to other survey questions, students in Group\u202fA were tasked with solving AlgorithmOneA (Fig.\u202f1) and AlgorithmTwoA (Fig.\u202f3), while those in Group\u202fB completed AlgorithmOneB (Fig.\u202f2) and AlgorithmTwoB (Fig.\u202f4).\r\n\r\nAlgorithmOneA (NTR) approaches the problem recursively, decreasing n by 3 until n\u202f\u2264\u202f1 and printing n\u202fx\u202f4 after each call; AlgorithmOneB uses iteration, increasing i by 3 in a loop until i exceeds n, printing i\u202fx\u202f4 each time. Despite the difference in their recursive versus their iterative structure, both share identical core logic including counter-adjustment by 3, multiplication by 4, and then print.\r\n\r\nAlgorithmTwoA and AlgorithmTwoB both calculate the sum of integers from 1 to n while printing a countdown from n to\u202f1, achieving the same result through tail recursion and iteration respectively.\r\n\r\n<img class=\"size-medium wp-image-77 alignnone\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-300x113.png\" alt=\"\" width=\"300\" height=\"113\" \/>\r\n\r\nFig.1 AlgorithmOneA\r\n\r\n<img class=\"alignnone size-medium wp-image-78\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-300x124.png\" alt=\"\" width=\"300\" height=\"124\" \/>\r\n\r\nFig.2 AlgorithmOneB\r\n\r\n<img class=\"alignnone size-medium wp-image-79\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-300x136.png\" alt=\"\" width=\"300\" height=\"136\" \/>\r\n\r\nFig.3 AlgorithmTwoA\r\n\r\n<img class=\"alignnone size-medium wp-image-80\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-300x139.png\" alt=\"\" width=\"300\" height=\"139\" \/>\r\n\r\nFig 4 AlgorithmTwoB\r\n\r\nOne of the open-ended questions invited students who reported difficulties with recursion to describe the sources of their confusion and the strategies they used to overcome it, as discussed further in the qualitative findings section.\r\n<h2>Importance of Collecting Mixed Data<\/h2>\r\nUsing both quantitative and qualitative data was essential because Threshold Concepts (TC) research requires evidence of performance outcomes as well as the lived experience of liminality (Meyer et al., 2010). The quantitative results identified where difficulties with TR, NTR, and iteration were most pronounced, while the qualitative reflections explained the misconceptions, mental models, and disorientation underlying those patterns. Together, they provided a fuller picture of how students navigated or became stuck within the conceptual transformation required to understand recursion.\r\n<h2>Quantitative Findings<\/h2>\r\nWith 71% of students reporting difficulties, the findings support the view that recursion has troublesome characteristics of a TC. A chi-squared test comparing how students performed on Tail Recursion (TR), Non-Tail Recursion (NTR) and their equivalent iterative algorithm problems revealed NTR is significantly more difficult than its iterative equivalent (p = 0.0028), while no significant difference was observed between TR and its iterative equivalent algorithms (p = 0.275). Further analysis showed NTR is notably more challenging than TR (p = 0.0006), whereas iterative versions of both were found similarly accessible (p = 0.52).\r\n\r\nThese findings suggest that while TR\u2019s similarity to iteration makes it more accessible once the base case is understood, NTR introduces another layer of difficulty due to its reliance on deferred computation and management of the call stack which disrupts students\u2019 iterative mental models, causing a greater disjunction (Savin-Baden, 2008) and appears to leave many students stuck in the liminal space. This aligns with Baron and Feitelson (2024), who found experienced programmers also found TR easier to comprehend when it aligned naturally with the problem. Our study extends these findings to pre-university learners.\r\n<h2>Qualitative Findings<\/h2>\r\nThe liminal nature of learning recursion was evident as students worked to reframe their thinking about program execution and function completion. Their reflections revealed the disorienting nature of this stage, where prior assumptions must be set aside before new understandings form. One student noted, \u201cThe basic understanding of recursion when I was first introduced to it was very confusing and so I had to watch videos on it at home to help me understand it clearly.\u201d Others described recursion as \u201cnot very intuitive\u201d and requiring \u201ctime to adapt from other programming methodologies such as iterative programming.\u201d\r\n\r\nSome students initially described recursion in iterative terms, treating it as a loop that would \u201ckeep going until the condition is false,\u201d revealing reliance on pre-existing mental models. Others struggled to understand that each recursive call maintains its own scope and variables, particularly in Non-Tail Recursion (NTR), where additional computation occurs after the recursive call. As one reflected, \u201cPrior to learning about parameter passing and stacks in depth, I was unaware of the different scopes of each function call and originally thought that the variables were overwritten\u2026\u201d\r\n\r\nBase-case errors were common in both TR and NTR, especially in deciding when recursion should stop or how return values are handled. One student commented, \u201cThe difficulty in recursion for myself is understanding when the exit condition is met that stops the recursive process, and tracing back the return variables from each function called in the stack.\u201d To compensate, some students relied on external scaffolds such as tracing diagrams or step-by-step notes, illustrating the cognitive load of internalising recursive thinking. As one explained, \u201cYou cannot trace the algorithm as easily in your head \u2026 it is often more difficult to understand what the function is doing until you use paper and trace it manually.\u201d These patterns indicate learners being caught in a liminal space typical of a TC.\r\n\r\nStudents\u2019 conceptual journeys revealed important contrasts. Iteration and TR appear to follow relatively direct paths, with most learners progressing smoothly. By contrast, NTR involved prolonged liminal struggles, with some learners remaining unable to reach an integrated understanding. These qualitative patterns highlight the greater cognitive demands of NTR and its higher risk of incomplete conceptual development.\r\n<h1>Conclusion<\/h1>\r\nThis study distinguishes Tail Recursion (TR) from Non\u2011Tail Recursion (NTR), showing NTR to be significantly more challenging for pre\u2011university learners and cautioning against treating recursion as a uniform construct in Threshold Concept (TC) research. NTR exhibits the troublesome characteristics of a TC and may qualify as one, while TR may not be if iteration is not considered a TC. The findings also reveal evidence of liminality, with students oscillating between iterative and recursive thinking, making errors in base cases, function scope, and flow, and relying on diagrams and stepwise tracing as coping strategies.\r\n\r\nInterestingly, the contrast between TR and NTR mirrors how programming languages implement them. Many compilers optimize TR by converting it into iteration, reducing computational demands (Kristensen et al., 2023). This optimization reflects students\u2019 reports that TR felt accessible once the base case was understood, aligning with iterative mental models. In contrast, NTR cannot be reduced to iteration, as each call must preserve deferred computations on the stack. This technical distinction parallels students\u2019 prolonged struggles with multiple active calls and return values, reinforcing the finding that NTR more strongly exemplifies the troublesome and transformative traits of a TC. These distinctions and liminal patterns offer practical guidance for designing more effective pedagogies to support mastery of recursion.\r\n<h1>Limitations and Future Work<\/h1>\r\nThe study examined only Tail and Non-Tail Recursion through specific tasks, so the findings should not be overgeneralised. Further research into different recursive structures and contexts is needed. Future work could explore recursion as a set of threshold concepts, focusing on call stacks, abstract control flow, and base cases, to better understand how these elements contribute to persistent misunderstandings of Non-Tail Recursion.\r\n<h1>References<\/h1>\r\nBaron, A., &amp; Feitelson, D. G. (2024). Why is recursion hard to comprehend? An experiment with experienced programmers in Python. ITiCSE 2024, 115\u2013121. https:\/\/doi.org\/10.1145\/3649217.3653636\r\n\r\nBenander, A. C., Benander, B. A., &amp; Pu, H. (1996). Recursion vs. iteration: An empirical study of comprehension. Journal of Systems and Software 32, 73\u201382.\r\n\r\nBoustedt, J., Eckerdal, A., McCartney, R., Mostr\u00f6m, J., Ratcliffe, M., Sanders, K., &amp; Zander, C. (2007). Threshold concepts in computer science: Do they exist and are they useful? SIGCSE \u201907, 504\u2013508. https:\/\/doi.org\/10.1145\/1227310.1227482\r\n\r\nCenter for Engaged Learning (2019). Ray Land vlog. https:\/\/youtu.be\/J5H5ykavOak (accessed 5 July 2024).\r\n\r\nEckerdal, A., McCartney, R., Mostr\u00f6m, J., Sanders, K., Thomas, L., &amp; Zander, C. (2007). From limen to lumen: Computing students in liminal spaces. ICER \u201907, 123\u2013132.\r\n\r\nEndres, M., Weimer, W., &amp; Kamil, A. (2021). An Analysis of Iterative and Recursive Problem Performance. Proceedings of the 52nd ACM Technical Symposium on Computer Science Education.\r\n\r\nFellah, A., &amp; Bandi, A. (2018). The essence of recursion: reduction, delegation, and visualization. J. Comput. Sci. Coll., 33(5), 115\u2013123.\r\n\r\nGuzdial, M. (2018). Exploring the question of teaching recursion or iterative control structures first. Computing Ed Research \u2013 Guzdial\u2019s Take. https:\/\/computinged.wordpress.com\/2018\/03\/09\/exploring-the-question-of-teaching-recursion-or-iterative-control-structures-first\/ (accessed 22 Oct 2023).\r\n\r\nIrving, G., Wright, A., &amp; Hibbert, P. C. (2019). Threshold concept learning: Emotions and liminal space transitions. Management Learning (forthcoming).\r\n\r\nKessler, C. M., &amp; Anderson, J. R. (1986). Learning flow of control: Recursive and iterative procedures. Human Computer Interaction,, 2(2), 135\u2013166. https:\/\/doi.org\/10.1207\/s15327051hci0202_2\r\n\r\nKiesler, N. (2022). Mental models of recursion: A secondary analysis of novice learners\u2019 steps and errors in Java exercises. PPIG 2022.\r\n\r\nKristensen, J. T., Kaarsgaard, R., &amp; Thomsen, M. K. (2023). Tail recursion transformation for invertible functions. Reversible Computation 2023, 3\u201318. Springer. https:\/\/doi.org\/10.1007\/978-3-031-37775-4_1\r\n\r\nLand, R., Rattray, J., &amp; Vivian, P. (2014). Learning in the liminal space: A semiotic approach to threshold concepts. Higher Education, 67(2), 199\u2013217. http:\/\/www.jstor.org\/stable\/43648647\r\n\r\nMaiorana, F., Csizmadia, A., Richards, G., &amp; Riedesel, C. (2021). Recursion versus iteration: A comparative approach for algorithm comprehension. In Auer, M. E., &amp; Centea, D. (Eds.), Visions and Concepts for Education 4.0 (pp. 3\u201318). Springer. https:\/\/doi.org\/10.1007\/978-3-030-67209-6_27\r\n\r\nMeyer, J. H. F., &amp; Land, R. (2003). Threshold concepts and troublesome knowledge: Linkages to ways of thinking and practising. In ISL10 Improving Student Learning (pp. 412\u2013424). Oxford Brookes University.\r\n\r\nMeyer, Jan &amp; Land, Ray &amp; Baillie, Caroline. (2010). Threshold Concepts and Transformational Learning. 10.1163\/9789460912078.\r\n\r\nMirolo, C. (2012). Is iteration really easier to learn than recursion for CS1 students? ICER \u201812, 99\u2013104. https:\/\/doi.org\/10.1145\/2361276.2361296\r\n\r\nNzemeke, J., Begum, M., &amp; Wood, J. (2024). Exploring teachers\u2019 perspectives on navigating recursion pedagogies. PPIG 2024, 77\u201389. Liverpool University.\r\n\r\nPeter, M., Harlow, A., Scott, J. B., McKie, D., Johnson, E. M., Moffat, K., &amp; McKim, A. M. (2014). Threshold concepts: Impacts on teaching and learning at tertiary level. Commission Report for Teaching and Learning Research Initiative (pp. 1\u201321).\r\n\r\nSanders, I., &amp; Scholtz, T. (2012). First year students\u2019 understanding of flow of control in recursive algorithms. African Journal of Research in Mathematics, Science and Technology Education, 16(3), 348\u2013362.\r\n\r\nSavin-Baden, M. (2008). Learning spaces: Creating opportunities for knowledge creation in academic life. Maidenhead:SRHE\/Open University Press.\r\n\r\nTurbak, F., Royden, C., Stephan, J., &amp; Herbst, J. (1999). Teaching recursion before loops in CS1. J. Comput. Small Coll., 14(4), 86\u2013101.\r\n\r\nWiedenbeck, S. (1989). Learning iteration and recursion from examples. International Journal of Man-Machine Studies, Volume 30(1), 1\u201322. https:\/\/doi.org\/10.1016\/S0020-7373(89)80018-5","rendered":"<h1>Abstract<\/h1>\n<p>Recursive algorithms involve functions calling themselves until a base case is reached. Tail Recursion (TR), where the recursive call is the final action, closely resembles iteration and tends to be more accessible for students. In contrast, Non-Tail Recursion (NTR) requires managing function states on the call stack, introducing greater cognitive complexity. Addressing questions in Threshold Concept (TC) theory, such as the nature of \u201ctroublesome knowledge\u201d and the role of \u201climinal space\u201d in learning, the study investigates how TR and NTR differ in their conceptual demand and whether they exhibit the troublesome characteristics of a TC in computer science education. Findings reveal that NTR strongly aligns with TC characteristics due to its abstract and challenging nature, while TR does not. By distinguishing which form of recursion embodies the troublesome and liminal traits of TC, the study advances TC research, showing that not all manifestations of a concept are equally troublesome. It provides empirical evidence for practitioners interested in designing effective pedagogies.<\/p>\n<p><em>Keywords<\/em>: troublesome knowledge, Computer Science education, recursion, tail recursion, non-tail recursion, liminal Space; iteration<\/p>\n<p>&nbsp;<\/p>\n<p>Despite its central role in computer science curricula, recursion continues to present significant challenges for students. Its reliance on understanding call stacks (how function calls are stored and resumed), abstract control flow (the order in which execution moves across calls), and base cases (the condition that stops further calls), often pushes students to fall back on iterative approaches, even when recursion is the more natural solution. While prior studies have established recursion\u2019s difficulty (Kiesler, 2022; Sanders &amp; Scholtz, 2012), only limited work has explored how its different forms, particularly Tail Recursion (TR) and Non-tail recursion (NTR) vary in cognitive demand for novice learners. Recent research by Baron and Feitelson (2024) highlights that comprehension is especially hindered in NTR and that TR may be more accessible to learners than NTR, yet the evidence for this distinction in pre-university student populations remains sparse. Our study responds to that gap by comparing student performance and reasoning across TR, NTR, and their iterative equivalents. By linking these differences to threshold concept theory, the research seeks to clarify which forms of recursion may represent a true threshold for learners.<\/p>\n<h1>Literature Review<\/h1>\n<p>Ray Land (CELatElon, 2019) described threshold concept (TC) as one that allows computer science students who are stuck when learning a concept and their teachers who get stuck teaching it, to get out of the \u201cstuck space.\u201d This is also referred to as the liminal space \u2013 a transitional phase where learners are in an \u201cin-between\u201d state, struggle with new and challenging ideas before fully understanding them (Land et al, 2014; Irving et al., 2019). This phase is often marked by troublesomeness, where learners encounter concepts that are difficult to understand, counter-intuitive, or even alien to their previous understanding. Some studies suggest that recursion may meet the criteria of a TC (Boustedt et al., 2007).<\/p>\n<p>This troublesome nature is a key aspect of TCs, as it is through navigating these challenging liminal spaces that learners achieve a deeper, transformative shift in understanding (Peter et al. 2014). When students are stuck in the liminal space, they may experience frustration and will usually take different paths to attain full understanding (Eckerdal et al., 2007) or as Meyer and Land (2003) puts it, the \u201crite of passage.\u201d<\/p>\n<p>Recursion often ranks among the most cognitively demanding programming concepts for computer science students (Fellah and Bandi, 2018; Nzemeke et al. 2024). It can be particularly challenging when significant computation occurs after the recursive call, as in NTR. While problems that naturally fit the TR form are generally easier for students to understand, forcing a transformation into TR can introduce additional cognitive load and sometimes obscure the algorithm\u2019s underlying intent, making comprehension more difficult (Baron &amp; Feitelson, 2024).<\/p>\n<p>A common way to investigate novice students\u2019 difficulties with recursion is to compare it with iteration, which is often viewed as more straightforward and intuitive (Endres et al., 2021). Benander et al. (1996), in an experiment testing whether recursion is indeed harder to understand, found a statistically significant difference in comprehension favouring recursion, though they called for further empirical research in this area. Mirolo (2012) similarly challenged the assumption, arguing that problem difficulty depends more on task characteristics than on the programming paradigm itself. Endres et al. (2021) add that problem framing strongly influences outcomes: students performed better on iterative versions of non-branching numerical tasks but excelled with recursion for array classification.<\/p>\n<p>There are also suggestions that the sequencing of recursion and iteration instruction with regards to when they are taught, is closely related to how well students understand these concepts. Teaching iteration first is often justified for its broader applicability and lower cognitive demand (Kessler &amp; Anderson, 1986; Wiedenbeck, 1989). Nzemeke et al. (2024) provide complementary insights from the viewpoint of teachers. They found that recursion is typically introduced to students after iteration, and most of the surveyed teachers perceived it as a more challenging concept for students. It may be argued that while teaching iteration (before recursion) help students understand the idea of repetition, it may unintentionally reinforce loop-based mental models that hinder comprehension of NTR. Turbak et al. (1999) report that teaching recursion before iteration improved mastery of both, and Maiorana et al. (2021) recommend introducing both early to promote direct comparison and deeper algorithmic understanding. Guzdial (2018) argues that these concerns remain relevant and should be revisited through modern replication studies.<\/p>\n<h1>Research Question<\/h1>\n<p>How do learners experience recursion as a potential Threshold Concept, and in what ways do Tail and Non-Tail recursion differ in the liminal struggles and pathways of conceptual progression?<\/p>\n<h1>Research Methods and Data Collection<\/h1>\n<p>Using a mixed-method approach, 41 students were surveyed to gather quantitative and qualitative data on their experiences learning recursion. The students targeted all study computer science in Key Stage 4 (students aged 14 to 15) and Key Stage 5 (students aged 16 to 18) in a secondary school and Sixth Form College in England, United Kingdom. They have learned core programming concepts including recursion, sequence, iteration, and selection, functional and procedural paradigms, along with techniques such as parameter passing, using arguments, and returning values. They also understand the purpose of algorithms and have been taught how to construct and trace them for a given task.<\/p>\n<p>A random name selector software was used to put students into two groups (Group A and Group B). Random assignment of students to groups plays a crucial role in allowing statistical tests to fairly compare outcomes between different groups. It&#8217;s the most effective strategy for achieving such group equivalence, guarding against selection bias (Skelly et al., 2012).<\/p>\n<p>Students in Group\u202fA traced TR and NTR algorithms, while those in Group\u202fB solved their equivalent iterative versions. These parallel tasks enabled comparison of conceptual understanding and problem\u2011solving strategies without bias. By pairing each recursive algorithm with an iterative counterpart performing the same core operations, the design isolated recursion as the variable of interest. This control ensured differences in performance reflected the nature of recursion rather than task complexity, enabling evaluation of whether recursion, relative to iteration, exhibits the troublesome characteristics of a TC. Quantitative measures (e.g., base\u2011case identification, output prediction, difficulty ratings) and qualitative evidence (e.g., justifications of responses) were designed to help reveal misconceptions and cognitive approaches.<\/p>\n<p>Ethical approval from the City St George\u2019s university&#8217;s ethics committee was obtained.<\/p>\n<h1>Analysing Key Questions Used<\/h1>\n<p>In addition to other survey questions, students in Group\u202fA were tasked with solving AlgorithmOneA (Fig.\u202f1) and AlgorithmTwoA (Fig.\u202f3), while those in Group\u202fB completed AlgorithmOneB (Fig.\u202f2) and AlgorithmTwoB (Fig.\u202f4).<\/p>\n<p>AlgorithmOneA (NTR) approaches the problem recursively, decreasing n by 3 until n\u202f\u2264\u202f1 and printing n\u202fx\u202f4 after each call; AlgorithmOneB uses iteration, increasing i by 3 in a loop until i exceeds n, printing i\u202fx\u202f4 each time. Despite the difference in their recursive versus their iterative structure, both share identical core logic including counter-adjustment by 3, multiplication by 4, and then print.<\/p>\n<p>AlgorithmTwoA and AlgorithmTwoB both calculate the sum of integers from 1 to n while printing a countdown from n to\u202f1, achieving the same result through tail recursion and iteration respectively.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-medium wp-image-77 alignnone\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-300x113.png\" alt=\"\" width=\"300\" height=\"113\" srcset=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-300x113.png 300w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-1024x387.png 1024w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-768x290.png 768w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-65x25.png 65w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-225x85.png 225w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1-350x132.png 350w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure1.png 1328w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Fig.1 AlgorithmOneA<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-78\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-300x124.png\" alt=\"\" width=\"300\" height=\"124\" srcset=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-300x124.png 300w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-1024x424.png 1024w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-768x318.png 768w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-65x27.png 65w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-225x93.png 225w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2-350x145.png 350w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure2.png 1318w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Fig.2 AlgorithmOneB<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-79\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-300x136.png\" alt=\"\" width=\"300\" height=\"136\" srcset=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-300x136.png 300w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-1024x465.png 1024w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-768x349.png 768w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-1536x697.png 1536w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-65x30.png 65w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-225x102.png 225w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3-350x159.png 350w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure3.png 1588w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Fig.3 AlgorithmTwoA<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-80\" src=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-300x139.png\" alt=\"\" width=\"300\" height=\"139\" srcset=\"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-300x139.png 300w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-1024x473.png 1024w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-768x355.png 768w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-1536x710.png 1536w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-65x30.png 65w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-225x104.png 225w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4-350x162.png 350w, https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-content\/uploads\/sites\/2547\/2025\/10\/Figure4.png 1591w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>Fig 4 AlgorithmTwoB<\/p>\n<p>One of the open-ended questions invited students who reported difficulties with recursion to describe the sources of their confusion and the strategies they used to overcome it, as discussed further in the qualitative findings section.<\/p>\n<h2>Importance of Collecting Mixed Data<\/h2>\n<p>Using both quantitative and qualitative data was essential because Threshold Concepts (TC) research requires evidence of performance outcomes as well as the lived experience of liminality (Meyer et al., 2010). The quantitative results identified where difficulties with TR, NTR, and iteration were most pronounced, while the qualitative reflections explained the misconceptions, mental models, and disorientation underlying those patterns. Together, they provided a fuller picture of how students navigated or became stuck within the conceptual transformation required to understand recursion.<\/p>\n<h2>Quantitative Findings<\/h2>\n<p>With 71% of students reporting difficulties, the findings support the view that recursion has troublesome characteristics of a TC. A chi-squared test comparing how students performed on Tail Recursion (TR), Non-Tail Recursion (NTR) and their equivalent iterative algorithm problems revealed NTR is significantly more difficult than its iterative equivalent (p = 0.0028), while no significant difference was observed between TR and its iterative equivalent algorithms (p = 0.275). Further analysis showed NTR is notably more challenging than TR (p = 0.0006), whereas iterative versions of both were found similarly accessible (p = 0.52).<\/p>\n<p>These findings suggest that while TR\u2019s similarity to iteration makes it more accessible once the base case is understood, NTR introduces another layer of difficulty due to its reliance on deferred computation and management of the call stack which disrupts students\u2019 iterative mental models, causing a greater disjunction (Savin-Baden, 2008) and appears to leave many students stuck in the liminal space. This aligns with Baron and Feitelson (2024), who found experienced programmers also found TR easier to comprehend when it aligned naturally with the problem. Our study extends these findings to pre-university learners.<\/p>\n<h2>Qualitative Findings<\/h2>\n<p>The liminal nature of learning recursion was evident as students worked to reframe their thinking about program execution and function completion. Their reflections revealed the disorienting nature of this stage, where prior assumptions must be set aside before new understandings form. One student noted, \u201cThe basic understanding of recursion when I was first introduced to it was very confusing and so I had to watch videos on it at home to help me understand it clearly.\u201d Others described recursion as \u201cnot very intuitive\u201d and requiring \u201ctime to adapt from other programming methodologies such as iterative programming.\u201d<\/p>\n<p>Some students initially described recursion in iterative terms, treating it as a loop that would \u201ckeep going until the condition is false,\u201d revealing reliance on pre-existing mental models. Others struggled to understand that each recursive call maintains its own scope and variables, particularly in Non-Tail Recursion (NTR), where additional computation occurs after the recursive call. As one reflected, \u201cPrior to learning about parameter passing and stacks in depth, I was unaware of the different scopes of each function call and originally thought that the variables were overwritten\u2026\u201d<\/p>\n<p>Base-case errors were common in both TR and NTR, especially in deciding when recursion should stop or how return values are handled. One student commented, \u201cThe difficulty in recursion for myself is understanding when the exit condition is met that stops the recursive process, and tracing back the return variables from each function called in the stack.\u201d To compensate, some students relied on external scaffolds such as tracing diagrams or step-by-step notes, illustrating the cognitive load of internalising recursive thinking. As one explained, \u201cYou cannot trace the algorithm as easily in your head \u2026 it is often more difficult to understand what the function is doing until you use paper and trace it manually.\u201d These patterns indicate learners being caught in a liminal space typical of a TC.<\/p>\n<p>Students\u2019 conceptual journeys revealed important contrasts. Iteration and TR appear to follow relatively direct paths, with most learners progressing smoothly. By contrast, NTR involved prolonged liminal struggles, with some learners remaining unable to reach an integrated understanding. These qualitative patterns highlight the greater cognitive demands of NTR and its higher risk of incomplete conceptual development.<\/p>\n<h1>Conclusion<\/h1>\n<p>This study distinguishes Tail Recursion (TR) from Non\u2011Tail Recursion (NTR), showing NTR to be significantly more challenging for pre\u2011university learners and cautioning against treating recursion as a uniform construct in Threshold Concept (TC) research. NTR exhibits the troublesome characteristics of a TC and may qualify as one, while TR may not be if iteration is not considered a TC. The findings also reveal evidence of liminality, with students oscillating between iterative and recursive thinking, making errors in base cases, function scope, and flow, and relying on diagrams and stepwise tracing as coping strategies.<\/p>\n<p>Interestingly, the contrast between TR and NTR mirrors how programming languages implement them. Many compilers optimize TR by converting it into iteration, reducing computational demands (Kristensen et al., 2023). This optimization reflects students\u2019 reports that TR felt accessible once the base case was understood, aligning with iterative mental models. In contrast, NTR cannot be reduced to iteration, as each call must preserve deferred computations on the stack. This technical distinction parallels students\u2019 prolonged struggles with multiple active calls and return values, reinforcing the finding that NTR more strongly exemplifies the troublesome and transformative traits of a TC. These distinctions and liminal patterns offer practical guidance for designing more effective pedagogies to support mastery of recursion.<\/p>\n<h1>Limitations and Future Work<\/h1>\n<p>The study examined only Tail and Non-Tail Recursion through specific tasks, so the findings should not be overgeneralised. Further research into different recursive structures and contexts is needed. Future work could explore recursion as a set of threshold concepts, focusing on call stacks, abstract control flow, and base cases, to better understand how these elements contribute to persistent misunderstandings of Non-Tail Recursion.<\/p>\n<h1>References<\/h1>\n<p>Baron, A., &amp; Feitelson, D. G. (2024). Why is recursion hard to comprehend? An experiment with experienced programmers in Python. ITiCSE 2024, 115\u2013121. https:\/\/doi.org\/10.1145\/3649217.3653636<\/p>\n<p>Benander, A. C., Benander, B. A., &amp; Pu, H. (1996). Recursion vs. iteration: An empirical study of comprehension. Journal of Systems and Software 32, 73\u201382.<\/p>\n<p>Boustedt, J., Eckerdal, A., McCartney, R., Mostr\u00f6m, J., Ratcliffe, M., Sanders, K., &amp; Zander, C. (2007). Threshold concepts in computer science: Do they exist and are they useful? SIGCSE \u201907, 504\u2013508. https:\/\/doi.org\/10.1145\/1227310.1227482<\/p>\n<p>Center for Engaged Learning (2019). Ray Land vlog. https:\/\/youtu.be\/J5H5ykavOak (accessed 5 July 2024).<\/p>\n<p>Eckerdal, A., McCartney, R., Mostr\u00f6m, J., Sanders, K., Thomas, L., &amp; Zander, C. (2007). From limen to lumen: Computing students in liminal spaces. ICER \u201907, 123\u2013132.<\/p>\n<p>Endres, M., Weimer, W., &amp; Kamil, A. (2021). An Analysis of Iterative and Recursive Problem Performance. Proceedings of the 52nd ACM Technical Symposium on Computer Science Education.<\/p>\n<p>Fellah, A., &amp; Bandi, A. (2018). The essence of recursion: reduction, delegation, and visualization. J. Comput. Sci. Coll., 33(5), 115\u2013123.<\/p>\n<p>Guzdial, M. (2018). Exploring the question of teaching recursion or iterative control structures first. Computing Ed Research \u2013 Guzdial\u2019s Take. https:\/\/computinged.wordpress.com\/2018\/03\/09\/exploring-the-question-of-teaching-recursion-or-iterative-control-structures-first\/ (accessed 22 Oct 2023).<\/p>\n<p>Irving, G., Wright, A., &amp; Hibbert, P. C. (2019). Threshold concept learning: Emotions and liminal space transitions. Management Learning (forthcoming).<\/p>\n<p>Kessler, C. M., &amp; Anderson, J. R. (1986). Learning flow of control: Recursive and iterative procedures. Human Computer Interaction,, 2(2), 135\u2013166. https:\/\/doi.org\/10.1207\/s15327051hci0202_2<\/p>\n<p>Kiesler, N. (2022). Mental models of recursion: A secondary analysis of novice learners\u2019 steps and errors in Java exercises. PPIG 2022.<\/p>\n<p>Kristensen, J. T., Kaarsgaard, R., &amp; Thomsen, M. K. (2023). Tail recursion transformation for invertible functions. Reversible Computation 2023, 3\u201318. Springer. https:\/\/doi.org\/10.1007\/978-3-031-37775-4_1<\/p>\n<p>Land, R., Rattray, J., &amp; Vivian, P. (2014). Learning in the liminal space: A semiotic approach to threshold concepts. Higher Education, 67(2), 199\u2013217. http:\/\/www.jstor.org\/stable\/43648647<\/p>\n<p>Maiorana, F., Csizmadia, A., Richards, G., &amp; Riedesel, C. (2021). Recursion versus iteration: A comparative approach for algorithm comprehension. In Auer, M. E., &amp; Centea, D. (Eds.), Visions and Concepts for Education 4.0 (pp. 3\u201318). Springer. https:\/\/doi.org\/10.1007\/978-3-030-67209-6_27<\/p>\n<p>Meyer, J. H. F., &amp; Land, R. (2003). Threshold concepts and troublesome knowledge: Linkages to ways of thinking and practising. In ISL10 Improving Student Learning (pp. 412\u2013424). Oxford Brookes University.<\/p>\n<p>Meyer, Jan &amp; Land, Ray &amp; Baillie, Caroline. (2010). Threshold Concepts and Transformational Learning. 10.1163\/9789460912078.<\/p>\n<p>Mirolo, C. (2012). Is iteration really easier to learn than recursion for CS1 students? ICER \u201812, 99\u2013104. https:\/\/doi.org\/10.1145\/2361276.2361296<\/p>\n<p>Nzemeke, J., Begum, M., &amp; Wood, J. (2024). Exploring teachers\u2019 perspectives on navigating recursion pedagogies. PPIG 2024, 77\u201389. Liverpool University.<\/p>\n<p>Peter, M., Harlow, A., Scott, J. B., McKie, D., Johnson, E. M., Moffat, K., &amp; McKim, A. M. (2014). Threshold concepts: Impacts on teaching and learning at tertiary level. Commission Report for Teaching and Learning Research Initiative (pp. 1\u201321).<\/p>\n<p>Sanders, I., &amp; Scholtz, T. (2012). First year students\u2019 understanding of flow of control in recursive algorithms. African Journal of Research in Mathematics, Science and Technology Education, 16(3), 348\u2013362.<\/p>\n<p>Savin-Baden, M. (2008). Learning spaces: Creating opportunities for knowledge creation in academic life. Maidenhead:SRHE\/Open University Press.<\/p>\n<p>Turbak, F., Royden, C., Stephan, J., &amp; Herbst, J. (1999). Teaching recursion before loops in CS1. J. Comput. Small Coll., 14(4), 86\u2013101.<\/p>\n<p>Wiedenbeck, S. (1989). Learning iteration and recursion from examples. International Journal of Man-Machine Studies, Volume 30(1), 1\u201322. https:\/\/doi.org\/10.1016\/S0020-7373(89)80018-5<\/p>\n<div class=\"media-attributions clear\" prefix:cc=\"http:\/\/creativecommons.org\/ns#\" prefix:dc=\"http:\/\/purl.org\/dc\/terms\/\"><h2>Media Attributions<\/h2><ul><li >Figure1       <\/li><li >Figure2       <\/li><li >Figure3       <\/li><li >Figure4       <\/li><\/ul><\/div>","protected":false},"author":1929,"menu_order":5,"template":"","meta":{"pb_show_title":"on","pb_short_title":"Understanding difficulties of recursive algorithm comprehension","pb_subtitle":"","pb_authors":["jnzemeke","mbegum","jwood"],"pb_section_license":""},"chapter-type":[],"contributor":[64,62,63],"license":[],"class_list":["post-41","chapter","type-chapter","status-publish","hentry","contributor-jwood","contributor-jnzemeke","contributor-mbegum"],"part":25,"_links":{"self":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapters\/41","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/wp\/v2\/users\/1929"}],"version-history":[{"count":8,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapters\/41\/revisions"}],"predecessor-version":[{"id":99,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapters\/41\/revisions\/99"}],"part":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/parts\/25"}],"metadata":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapters\/41\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/wp\/v2\/media?parent=41"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/pressbooks\/v2\/chapter-type?post=41"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/wp\/v2\/contributor?post=41"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/pressbooks.bccampus.ca\/thresholdconceptsconference\/wp-json\/wp\/v2\/license?post=41"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}