You my recognize the function shown above as the trigonometric formula to calculate arc length in radians. In this article I explain my method for hand-coding complex mathematical expressions such as this.
<math> <mo>(</mo><mn>-1</mn><mo>)</mo> <sup><mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow></sup> </math>
First, write the code for the numerator of the fraction, which contains a complex exponent.
<math> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </math>
Next, write the code for the denominator of the fraction.
<math>
<mfrac>
<mrow>
<msup>
<mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow>
<mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow>
</msup>
</mrow>
<mrow>
<mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo>
</mrow>
</mfrac>
</math>
Then use an <mfrac> element to create the fraction.
<math>
<mo>∑</mo>
<mfrac>
<mrow>
<msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow>
<mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow>
</msup> </mrow>
<mrow>
<mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo>
</mrow>
</mfrac>
</math>
Next place the code for the summation symbol before the fraction.
<math> <munder> <mrow><ms lquote=" " rquote=" ">∑</ms></mrow> <mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow> </munder> <mfrac> <mrow> <msup> <mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow> <mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow> </msup> </mrow> <mrow> <mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo> </mrow> </mfrac> </math>
Then use a <munder> element to put the range under the summation symbol.
<math>
<mi>sin</mi>
<mo>θ</mo>
<mo>=</mo>
<munder>
<mrow><ms lquote=" " rquote=" ">∑</ms></mrow>
<mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow>
</munder>
<mfrac>
<mrow>
<msup>
<mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow>
<mrow><mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow>
</msup>
</mrow>
<mrow>
<mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo>
</mrow>
</mfrac>
</math>
Then code the left side and equals sign of the equation.
<math>
<mi>sin</mi>
<mo>θ</mo>
<mo>=</mo>
<munder>
<mrow><ms lquote=" " rquote=" ">∑</ms></mrow>
<mrow><mi>n</mi><mo>≥</mo><mn>0</mn></mrow>
</munder>
<mfrac>
<mrow>
<msup>
<mrow><mo>(</mo><mn>-1</mn><mo>)</mo></mrow>
<mrow>
<mstyle mathsize="big">
<mi>n</mi><mo>θ</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn></mrow>
</mstyle>
</msup>
</mrow>
<mrow>
<mo>(</mo><mn>2</mn><mi>n</mi><mo>+</mo><mn>1</mn><mo>)</mo><mo>!</mo>
</mrow>
</mfrac>
</math>
You may have noticed that the text size of the exponent in the numerator of the fraction is very tiny. You can fix this by using an <mstyle> element with a mathsize attribute set to "big".
More Graphics Design Tips:
• How to Remove PNG and JPEG EXIF Metadata
• How to Trace an Image Using Inkscape
• RGB Vs CMYK
• Inkscape - Free Vector Graphics Illustration Package
• MathML Element to Display a Fraction
• How to De-haze a Photo with GIMP
• Inkscape Document Properties
• Inkscape Shadows and Highlights
• Use GIMP to Scale (Resize) an Image
• Draw Bezier SVG Drawing Application
