Timothy Stiles
Timothy Stiles
Okay, here's something actually actionable - approximating the analytical section for slog and tetration separately by linear interpolating to the nearest base and nearest 0.1 value. When I feel in...
finally giving this a real shot today. using some other worked numbers to sanity check myself, helpfully they go to -1.1 and 1.1 (should have asked for this sooner since...
OKAY! Got everything working except weird edge cases! (for tetration in particular: bases 10. (note: it'd be especially cool if I could derive the critical section for other bases knowing...
Oh neat, I found a javascript implemented complex tetration calculator: http://myweb.astate.edu/wpaulsen/tetcalc/tetcalc.html It doesn't let me pick an arbitrary base (and the reason why is because it has a bunch of...
documenting a slight inaccuracy in real height iteratedexp/layeradd10/layeradd: ground truth: Decimal.pow(10, Decimal.pow(10, 9.9)).toString() '1.7491284084036844e7943282347' new Decimal(10).iteratedexp(1.9999999999999, 9.9).toString() '1.9281592428106278e8278628008' new Decimal(10).iteratedexp(2, 9.9).toString() '1.7491284084036844e7943282347' new Decimal(10).iteratedexp(2.0000000000001, 9.9).toString() '2.511305123738677e8278628008' new Decimal(9.9).layeradd(1.9999999999999, 10).toString() '1.9281592428106278e8278628008'...
ok, this is my TODO list is now: 1) get more critical section grid values (in particular: 1.45, 1.5, 1.75, 11, 100, 1000, 1e10, 1e30, 1e100, 1e300 and 1e1000 and...
OH before I forget, a 5. is that I want to explore if instead of linear interpolation on the tetration critical section, it should be exponential interpolation (e.g. linear on...
Another random note to myself (6): I could use the tetration calculator to make the critical sections for 2, e and 10 have more values in them (e.g. 20 or...
https://github.com/Patashu/break_eternity.js/issues/108 --> several issues were raised and fixed todo list progress: 1-3 are still open, 4 might be fixed but needs double checking, 5 is closed, 6 is open, 7...
New tetration idea - in the critical section, we can take frac to a power > 1, and this should make it grow slower at first and quicker later, and...