Skip to content

Issue on page /iteration.html (power/fixed point) #33

@jonocarroll

Description

@jonocarroll

The example of finding a function's fixed point using ⍣= confused me

2÷=10  Divide by 2 until we reach a fixed point

I understand that ⍣= will keep evaluating until the result no longer changes, but 10 (or any number) repeatedly divided by 2 only asymptotes to 0

      2÷110
5
      2÷210
2.5
      2÷1010
0.009765625
      2÷10010
7.888609052E¯30

so (I think) it only returns 0 because it loses precision.

I tried to find another more useful example. Application of the Collatz Conjecture always reaches 1, so that's perhaps not so interesting.

I suspect the canonical example of the Golden Ratio is more illuminating

      +÷11
2
      +÷21
1.5
      +÷31
1.666666667
      +÷=1
1.618033989

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions