06/13/2014, 04:44 PM
(06/13/2014, 03:42 PM)Lode Wrote: Hi,Ok. I have loaded "jmat.js" in Chrome, pressed F12, clicked "Console" tab,...
You need to include the jmat.js file in an HTML file. Then you can use the javascript console to calculate things. I'm quite sure every browser has a JS console, but I can only describe how to use it in Chrome: load that HTML file with jmat.js in it, then press F12, and type the following to calculate (10^10)^^0.5:
Jmat.tetration(Math.pow(10, 10), 0.5).toString()
This answers:
100000
I tried to run "Jmat.tetration(Math.pow(10, 10), 0.5).toString()" but I got error: ReferenceError: Jmat is not defined
Seems 10,000 be not correct but yes I think ~41.
10^^0.5 ~= 2.4770 ("Kneser" code in Pari/GP).

