FractalPark
Root finding

novaSine

0df5ac6e-d97e-55db-b624-96c310af07dd

Teaching overview

In FRM-like/1, novaSine initializes z = pixel. Each loop defines denom = cos(z); when its squared real-and-imaginary size is below 1e-10 it keeps z, otherwise it assigns z - sin(z)/denom + 0.18*c. The pinned julia profile uses 96 iterations.

Source walkthrough

  1. frm-v1:bb7d3fd03ddb3b27f66b28fea82cdfa4da6c88cf15a23c6da8fe27a8adf1e34e:init/0

    Initialization: init/0 sets z = pixel.

  2. frm-v1:bb7d3fd03ddb3b27f66b28fea82cdfa4da6c88cf15a23c6da8fe27a8adf1e34e:loop/0

    Iteration: loop/0 defines denom = cos(z).

  3. frm-v1:bb7d3fd03ddb3b27f66b28fea82cdfa4da6c88cf15a23c6da8fe27a8adf1e34e:loop/1

    Branch: loop/1 keeps z when denom has squared size below 1e-10; otherwise it assigns z - sin(z)/denom + 0.18*c.

  4. frm-v1:bb7d3fd03ddb3b27f66b28fea82cdfa4da6c88cf15a23c6da8fe27a8adf1e34e:bailout

    Termination: bailout tests |z - zPrev| >= 0.000001.

Syntax features

sequence

The cited annotations connect initialization from pixel, the denom = cos(z) loop assignment, and the change-based bailout.

branch

The cited branch keeps z for a squared denom size below 1e-10; otherwise it applies z - sin(z)/denom + 0.18*c.

Parameter experiment

Steps

  1. Use the pinned julia profile with all controls fixed. Run 48 iterations and then 96 iterations, and record whether the denom guard or the z - sin(z)/denom + 0.18*c update changes the observed iteration counts.

What to observe

The larger cap may expose additional guarded or unguarded updates; record whether the iteration counts differ.

Exercise

State the two outcomes of the cos(z) denominator-size guard.

Completion check

Your response names all 4 annotations and gives both keeping z and the sine update.

Sources and rights

This teaching unit is grounded in the pinned runtime source revision.

rightsStatus is project-owned; implementationBasis is project-owned; publicationDecision is publish; decisionReason is publish-project-owned-native-recipe. This does not make a broader claim about any third-party original.

Formula Record

novaSine

This canonical FractalPark implementation is published and runnable.

Deterministic preview of novaSine

Canonical source

Language
frm-like/1
Standard library
1
Profile mode
parameter-plane
Profile center
-0.5, 0
Profile zoom
0.4
Profile iterations
96
Profile evidence
mechanical

Parameters

No declared parameters

Canonical source

This verified canonical revision is read-only. Remix creates a separate editable fork.

Loading canonical source…

Source and implementation

Formula ID
0df5ac6e-d97e-55db-b624-96c310af07dd
Canonical name
novaSine
Original name
novaSine
Historical source
FractalPark
Current implementation
Project-owned

This is a FractalPark project-owned implementation. The linked file is the pinned canonical Definition.

Rights or attribution concern?

Send the Formula ID and supporting evidence. The maintainer can hold or withdraw the implementation while the claim is reviewed. contact@fractalpark.com