What Are Functional Powers and How Can We Explore f^n(x)?

  • Context: Graduate 
  • Thread starter Thread starter willsc8forwin
  • Start date Start date
  • Tags Tags
    Functional
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
willsc8forwin
Messages
1
Reaction score
0
I was reading on wikipedia about "functional powers", but I can't seem to find anything on it outside of this one section. I was wondering if there's any way to show anything for f^n(x). This is more of a general plea for more information on the topic than a specific question.

Oh and here's the wikipdia page I mentioned.http://en.wikipedia.org/wiki/Function_composition#Functional_powers"
 
Last edited by a moderator:
Physics news on Phys.org
willsc8forwin said:
I was reading on wikipedia about "functional powers", but I can't seem to find anything on it outside of this one section. I was wondering if there's any way to show anything for f^n(x). This is more of a general plea for more information on the topic than a specific question.

Oh and here's the wikipdia page I mentioned.http://en.wikipedia.org/wiki/Function_composition#Functional_powers"

Functional powers are used for example in Banach fixed point theorem http://en.wikipedia.org/wiki/Banach_fixed_point_theorem where one take a function f and investigates the limit of

[tex]x,f(x),f(f(x)),f(f(f(x))),...[/tex]

Also check the theory of Markov chains, dynamics systems and fractals (i.e. iterated function systems). This used functional powers.
 
Last edited by a moderator:
Fixpoints are also very relevant in type theory and functional programming. The fixpoint function fix f = f(f(f(...))) allows for general recursion (which is useful for programmers), but opens the possibility of nonterminating programs (infinite loops) which correspond under the Curry-Howard isomorphism to proofs of false propositions.