views:

66

answers:

3

hi expert, i'm try for log10 calculation using mathml in xml as follow

<apply><log><cn>x</cn></log></apply> 

for this i'm getting expected result, but now trying for antilog which is inverse of log, i'm not sure which tag have to be use, any i'm trying as follow

<apply><inverse><log><cn>x</cn></log></inverse></apply> 

here i'm not getting the expected result, do anyone know the exact tag for the antilog

thanks

A: 

Logarithms are the inverse of exponents.

If a = logb(c), then c = b ^ a (where ^ indicates, exponentiation, not XOR).

Anon.
+2  A: 

The base 10 antilog is just 10^x (that is, 10 raised to the *x*th power). As the link below says, the "antilog" notation is still used, but not very often. Is there a reason the normal exponential notation doesn't work for you?

http://en.wikipedia.org/wiki/Antilog#Antilogarithms

MatrixFrog
A: 

antilog? you mean power?

try

<msup>
  <mi>10</mi>
  <mn>x</mn>
</msup>
splix
thanks bro for ur ans, but this is presentation mathml which is usually use for displaying, but i'm looking for content mathml which use for calculationthanks
Apache