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
> log(sqrt(10),2)1.6609640474
> log(sqrt(10,2)) # even though sqrt only takes 1 argument6.6438561898
> log(sqrt(10,2 # this has the same behaviour6.6438561898
> log(sqrt(sqrt(10,2)))13.2877123795
log(sqrt(10, 2)) behaves like log(100, 2), log(sqrt(sqrt(10, 2))) behaves like log(1000, 2) etc.
The text was updated successfully, but these errors were encountered:
log(sqrt(10, 2))
behaves likelog(100, 2)
,log(sqrt(sqrt(10, 2)))
behaves likelog(1000, 2)
etc.The text was updated successfully, but these errors were encountered: