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:
• Inkscape Rectangles and Squares Drawing Tutorial
• XDdom 3D Axis and Coordinate System
• How to Create Radial Gradients in Inkscape
• Draw Bezier SVG Drawing Application
• Basic Inkscape Vector Drawing
• The Game Maker's Apprentice
• Inkscape Circles, Ellipses, and Arcs Drawing Tutorial
• Inkscape Shadows and Highlights
• How to Make a Meme
• Free Replacement for Overpriced Photoshop
