Tetration and higher-order operations on transfinite ordinals
#8
bo198214 Wrote:[...]
Just skimmed through your article and asking myself how this function can be expressed with a recursive definition ...
I've not thought about that... but I assume it must be possible since the algorithm obviously can be expressed as a Turing machine, so it must be recursive. I'm not sure how exactly to go about deriving a recursive definition for it, though.

Maybe one way is to perform a depth-first traversal on the tree, left child first, and recursively linearize the left-most children. So, in computer pseudocode, it could be something like this:

Code:
linearize(T,m) {
    if (is_rightbranching_chain(T.left_subtree) and
        is_rightbranching_chain(T.right_subtree))
    {
        ... (perform the transformation... not sure how to express this recursively yet)
    } else {
        T.left_subtree = linearize(T.left_subtree, m);
        T.right_subtree = linearize(T.right_subtree, m);
        return T;
    }
}

Once we work out the pseudocode, maybe there's a way to factor it into a recursive function...?
Reply


Messages In This Thread
RE: Tetration and higher-order operations on transfinite ordinals - by quickfur - 03/29/2008, 04:01 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Base Pi Hyper-Operations Catullus 3 7,201 11/08/2022, 06:51 AM
Last Post: Catullus
Question Rank-Wise Approximations of Hyper-Operations Catullus 48 69,366 09/08/2022, 02:52 AM
Last Post: JmsNxn
Question Octonion Hyper-Operations Catullus 3 6,376 07/05/2022, 08:53 AM
Last Post: Catullus
  Thoughts on hyper-operations of rational but non-integer orders? VSO 4 13,499 06/30/2022, 11:41 PM
Last Post: MphLee
  On my old fractional calculus approach to hyper-operations JmsNxn 14 25,641 07/07/2021, 07:35 AM
Last Post: JmsNxn
  On to C^\infty--and attempts at C^\infty hyper-operations JmsNxn 11 22,057 03/02/2021, 09:55 PM
Last Post: JmsNxn
  Could there be an "arctic geometry" by raising the rank of all operations? Syzithryx 2 10,265 07/24/2019, 05:59 PM
Last Post: Syzithryx
  on constructing hyper operations for bases > eta JmsNxn 1 9,394 04/08/2015, 09:18 PM
Last Post: marraco
  Ackermann function and hyper operations andydude 3 17,804 04/18/2011, 05:08 PM
Last Post: bo198214
  Operations with fractional index between + and * ? Gottfried 6 25,597 10/21/2009, 01:30 AM
Last Post: andydude



Users browsing this thread: 1 Guest(s)