About 326,000 results
Open links in new tab
  1. Introduction to Recursion - GeeksforGeeks

    Oct 25, 2025 · The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward …

  2. Recursive Functions: Definition, Steps & Examples in Maths - Vedantu

    A recursive function is a function that defines each term of a sequence based on the preceding terms. Instead of calculating a term directly, it uses a rule that 'refers back' or 'calls upon' its own previous …

  3. Recursion - Wikipedia

    Recursion in computer programming is exemplified when a function is defined in terms of simpler, often smaller versions of itself. The solution to the problem is then devised by combining the solutions …

  4. 4.17.2 What Is a Recursive Definition? - Algebra 1 | OpenStax

    4.17.2 What Is a Recursive Definition? - Algebra 1 | OpenStax. We're not quite sure what went wrong. Restart your browser. If this doesn't solve the problem, visit our Support Center. Our mission is to …

  5. Recursion: Definition, Purpose, and Examples - mimo.org

    Recursion: Definition, Purpose, and Examples Recursion is a programming technique in which a function calls itself to solve a problem by breaking it into smaller pieces. Instead of using loops to …

  6. Recursive function | Recursion, Algorithms, Programming | Britannica

    recursive function, in logic and mathematics, a type of function or expression predicating some concept or property of one or more variables, which is specified by a procedure that yields values or …

  7. Recursive Function Definition - What is a recursive function?

    Sep 21, 2020 · A recursive function is a function that calls itself during its execution. The process may repeat several times, outputting the result and the end of each iteration.

  8. What is Recursion? - GeeksforGeeks

    Jul 23, 2025 · Recursion involves calling the same function within itself, which leads to a call stack. Recursive functions may be less efficient than iterative solutions in terms of memory and performance.

  9. How Does Recursion Work? Explained with Code Examples

    Jul 25, 2024 · Recursion involves breaking down a problem into smaller pieces to the point that it cannot be further broken down. You solve the small pieces and put them together to solve the overall …

  10. Recursive Definition (Illustrated Mathematics Dictionary)

    Illustrated definition of Recursive: Applying a rule or formula to its own result, again and again. Example: start with 1 and apply double recursively:...