-
Notifications
You must be signed in to change notification settings - Fork 30
Description
The ISO 80000-2 standard recommends that:
log_10(x) should be written lg(x)
log_e(x) should be written ln(x)
log_2(x) should be written lb(x)
I saw that you have added the ln() and lg() functions, which is great!
So now we have in the Formulas questions:
For the teacher:
log_10(x) → lg(x) and log10(x)
log_e(x) → ln(x) and log(x) :
Note that log() function can also be used with two arguments: log_a(x) → log(x,a)
For the student:
log_10(x) → lg(x) and log10(x)
log_e(x) → ln(x)
log(x) does not seem to work, which I think is ok because, as ISO pointed out, it can be confusing.
log(x,b) is not available because it is a two argument function, so this is ok at least for now.
My questions:
-
I am updating the documentation. Can you tell me if all of the above is correct?
-
Are there other functions that have been added to the question, so I can include them in the documentation?
-
I think that log_2(x) → lb(x) could eventually be added. What do you think?
