Ask Your Question
1

Parse and Evaluate MathML

asked 13 years ago

Nobody gravatar image

updated 13 years ago

benjaminfjones gravatar image

Is there a possibility to parse content-mathml in Sage?

I would like to evaluate a formula that is given in a content-mathml document. How would I do this?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 9 years ago

vdelecroix gravatar image

updated 9 years ago

Sage is based on Python which implies that any Python module is (in principle) usable from Sage. As there are modules to deal with mathml content in Python (such as mathdom you can do the following

Install the mathdom module within sage: within a console do

me@home$ sage -pip install mathdom
me@home$ sage -pip install lxml

(As a prerequisite, I needed to install to packages into my linux distribution, namely "libxslt1-dev")

Then, launch sage and use mathdom (the example is taken from mathdom website)

me@home$ sage
sage: from mathml.lmathdom import MathDOM
sage: doc = MathDOM.fromString("+2^x+4*-5i/6","infix_term")
sage: for apply_tag in doc.xpath(u'//math:apply[math:plus]'):
....:     apply_tag.set_operator(u'minus')
sage: [ n.value() for n in doc.xpath(u'//math:cn') ]
[2, 4, Complex(0-5j), 6]
sage: from mathml.utils import pyterm
sage: doc.serialize("python")
u'2 ** x - 4 * (-5j) / 6'
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 3,847 times

Last updated: Jan 03 '16