You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Square roots of negative reals correctly evaluate, e.g. sqrt(-1) = i, sqrt(-4) = 2i, etc. For larger even nth roots, e.g. 4, 6, 8 etc, nth roots of negative numbers evaluate as though the argument were positive. E.g. ["Root", -1, 4] -> 1 ["Root", -16, 4] -> 2 (-64)^{1/6} -> 2
Square roots of negative reals correctly evaluate, e.g. sqrt(-1) = i, sqrt(-4) = 2i, etc. For larger even nth roots, e.g. 4, 6, 8 etc, nth roots of negative numbers evaluate as though the argument were positive. E.g.
["Root", -1, 4] -> 1
["Root", -16, 4] -> 2
(-64)^{1/6} -> 2
These were evaluated on the CE demo site, https://cortexjs.io/compute-engine/demo/, using code like
or
The text was updated successfully, but these errors were encountered: