views:

50

answers:

2

I have some mathematical formulas of the type

p = (l + m + n) / (i+j*2) 

Note: This is just an example. The real equations are more complicated with several variables participating in the equations.

I want to display these formulas in a tree like structure in an interactive, rich web component.

Initially the screen should display

p = x/y

with p, x and y as boxes. The user can click on the box labeled x which will "unfold" the box to expand and display x = (l + m + n) and so on.

Since this is a J2EE based application, I can use any RIA library compatible with J2EE.

Are there any 3rd party RIA libraries out there that can help me render these formulas ?

A: 

Looks like MathOverflow has this down... check it out.

AR
They use jsMath (http://www.math.union.edu/~dpvc/jsMath/).
Matthew Flaschen
Nice--TeX into HTML, which would suggest an AJAX RIA framework like MO's.
Michael Brewer-Davis