1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<<< mml
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow>
<mi>x</mi>
<mo>=</mo>
<mfrac href="http://mathworld.wolfram.com/QuadraticEquation.html">
<mrow>
<mo>−</mo>
<mi>b</mi>
<mo>±</mo>
<msqrt>
<mrow>
<msup>
<mi>b</mi>
<mn>2</mn>
</msup>
<mo>−</mo>
<mn>4</mn>
<mi>a</mi>
<mi>c</mi>
</mrow>
</msqrt>
</mrow>
<mrow>
<mn>2</mn>
<mi>a</mi>
</mrow>
</mfrac>
</mrow> </math>
>>> native
[ EIdentifier "x"
, ESymbol Rel "="
, EFraction
NormalFrac
(EGrouped
[ ESymbol Bin "\8722"
, EIdentifier "b"
, ESymbol Bin "\177"
, ESqrt
(EGrouped
[ ESuper (EIdentifier "b") (ENumber "2")
, ESymbol Bin "\8722"
, ENumber "4"
, EIdentifier "a"
, EIdentifier "c"
])
])
(EGrouped [ ENumber "2" , EIdentifier "a" ])
]
|