I have the equation Y = FY (fixed point equation). How to get of it the equation for F through other combinator (in particular S- combinator with first fixed parameter)?
How get Y combinator through S combinator or others?
129 Views Asked by kvendingoldo At
1
There are 1 best solutions below
Related Questions in LAMBDA-CALCULUS
- Reducing Complex DCGs Prolog
- Why is this an invalid eta conversion?
- Why are the set of variables in lambda calculus typically defined as countable infinite?
- Lambda calculus entire expression substitution
- Turing Machines and Lambda Calculus equivalence
- Haskell for Lambda Calculus, Type Inferencing
- Define the binary exponential operator CARAT in Lambda Calculus
- Find the lambda-terme without free variables of the following types?
- Looking for a Church-encoding (lambda calculus) to define < , > , !=
- Haskell, lambda calculus for Evaluation
- How to implement iteration of lambda calculus using scheme lisp?
- How to implement a recursive function in lambda calculus using a subset of Clojure language?
- Implementing Lambda Calculus true and false in Haskell
- Sum of list elements and length of list in lambda calculus
- How to write recursive factorial function in haskell without if then else statment
Related Questions in COMBINATORS
- mathematical calculations for larger values in c++
- How to Merge two Observables so the result completes when the any of the Observables completes?
- How does Data.MemoCombinators work?
- Designing a monadic type
- What is the difference between a combinator and a higher order function?
- for fixed point combinator Y, what is \x.f(xx)
- Combining two strings into one string which eliminates the same letters in C
- "updateDet" shouldnt recognize as keyword "update"
- What does Haskell's Data.Function.on do?
- How to create a K combinator in the enchanted forest? (To Mock a Mockingbird)
- Combinatory method like tap, but able to return a different value?
- F# return list of list lengths
- Getting the length of a list using combinators f#
- How does foldr work?
- Short circuiting (&&) in Haskell
Related Questions in S-COMBINATOR
- S combinator in Erlang
- Conversion from lambda term to combinatorial term
- Does SKS equal SKK?
- To prove SKK and II are beta equivalent, lambda calculus
- convert flip lambda into SKI terms
- Evaluating SKI-combinators with not enough arguments
- How to type the simply typed lambda calculus term (S K K)
- S combinator in Haskell
- How get Y combinator through S combinator or others?
- Lambda reductions prove S K = K I
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There's no way to do this -- consider the functions g and g ∘ g. Then Y(g) and Y(g ∘ g) are both g(g(g(g(g(...))))), so there's no way to go from Y(F) to F in general.