Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8570101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:29:01+00:00 2026-06-11T18:29:01+00:00

Possible Duplicate: function making >>> g=lambda x:x+1 >>> composition=lambda f,g:(lambda x:f(g(x))) >>> f=g >>>

  • 0

Possible Duplicate:
function making

>>> g=lambda x:x+1
>>> composition=lambda f,g:(lambda x:f(g(x)))
>>> f=g
>>> f=composition(f,g)
>>> f(9)
11
>>> f=composition(f,g)
>>> f=composition(f,g)
>>> f=composition(f,g)
>>> f(9)
14

Instead of using function composition(f,g) ,i did the following

>>> f=g
>>> f=lambda x:f(g(x))
>>> f(8)
RuntimeError: maximum recursion depth exceeded

I just aimed substituting function composition with corresponding lambda expression. I am confused about why f=composition(f,g) is not producing recursion but f=lambda x:f(g(x)) does.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:29:02+00:00Added an answer on June 11, 2026 at 6:29 pm

    For the first one:

    When you call composition(f, g), you are creating a closure around the contents of those variables. The lambda being returned is looking for the variable names f and g in its local scope – they’ll both be references to the g lambda created on the first line.

    For the second one:

    In the second one, when f is called, it looks for f in its “local” scope, which is actually the global scope – and finds itself, hence creating infinite recursion.

    The key here is that the lookup of f happens at execution, not when the lambda is defined.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: php mail() function on localhost I am using php mail(). I have
Possible Duplicate: javascript syntax: function calls and using parenthesis t.onclick = doSomething t.onclick =
Possible Duplicate: Run javascript function when user finishes typing instead of on key up?
Possible Duplicate: MySQL password function I am making tables for my homepage's registration fields
Possible Duplicate: How to get the length of a function in bytes? I'm making
Possible Duplicate: PHP function to strip tags, except a list of whitelisted tags and
Possible Duplicate: JavaScript Function Definition in ASP User Control Hi, I have a generic
Possible Duplicate: Can main function call itself in C++? I found this problem very
Possible Duplicate: calling ASP function from javascript okay running this code : <script type=text/javascript>
Possible Duplicate: Difference between (function(){})(); and function(){}(); I am trying to understand a few

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.