Menu
MathML Element to Display a Radical

An exponent is a number or letter written to the right of and above a number that defines how many times to use that number in a multiplication. A radical is the opposite of an exponent and is also known as root. The radical symbol indicates that the root of number inside the radical symbol should be taken.

If the number inside the radical symbol represents a number that was multiplied by itself once (squared), then a square root radical symbol is used. If the number inside the radical symbol represents a number that was multiplied by itself more than once, then that number of times (the index) is written as a small number placed inside the check mark portion of the radical sign.

MathML has two different elements used to display radicals. The msqrt element is used to specify a square root, and has no index. The mroot element is used to specify a higher index radical and displays that index.

x
<math>
  <msqrt>
  <mi>x</mi>
  </msqrt>
</math>

Shown above is an example using the msqrt element to show a square root radical.

x 3
<math>
  <mroot>
  <mi>x</mi>
  <mn>3</mn>
  </mroot>
</math>

Shown above is an example using the mroot element to show a higher root radical. Note that the base comes first in the code.

6 ( 2 x + 2 - 4 ( 4 x - 2 ) )
<math>
  <msqrt>
   <mn>6</mn>
   <mo>(</mo>
     <mn>2</mn>
     <mi>x</mi>
     <mo>+</mo>
     <mn>2</mn>
     <mo>-</mo>
       <mn>4</mn>
       <mo>(</mo>

      <mn>4</mn>
      <mi>x</mi>
      <mo>-</mo>
      <mn>2</mn>
      <mo>)</mo>
   <mo>)</mo>
  </msqrt>
</math>

Shown above, a complex expression is used as the root in a msqrt element.

6 ( 2 x + 2 ) 3 y
<math>
  <mroot>

     <mrow>
     <mn>6</mn>
     <mo>(</mo>
     <mn>2</mn>
     <mi>x</mi>
     <mo>+</mo>
     <mn>2</mn>
     <mo>)</mo>
     </mrow>

     <mrow>
     <mn>3</mn>
     <mi>y</mi>
     </mrow>

  </mroot>
</math>

Note that when using a root and or an index with multiple elements, use the mrow element to specify which elements go in the root and which go in the index.

y x 3
<math>
  <mfrac>
  <mi>y</mi>

     <mroot>
     <mi>x</mi>
     <mn>3</mn>
     </mroot>

  </mfrac>
</math>

Shown above is an mroot element nested inside an mfrac element. Either or both the mroot element and the mfrac element can be made as complex as necessary by using the mrow element.

y 4 3
<math>
  <mroot>
     <mfrac>
     <mi>y</mi>
     <mn>4</mn>
     </mfrac>
  <mn>3</mn>
  </mroot>
</math>

Shown above is an mfrac element nested inside an mroot element. Either or both the mfrac element and the mroot element can be made as complex as necessary by using the mrow element.


Learn more at amazon.com

More Graphics Design Tips:
• Building an Image with a Logo
• How to Make a Simple Animated Banner in Flash CS3
• Image Processing Filters - How to Sharpen a Photograph
• Drawing Text with Draw SVG
• Graphics Design for Beginners - Blur Filters
• How to Make a Meme
• What is Blender? The Software's Origins and Evolution
• Introduction to Draw SVG Free Online SVG Drawing Application
• MathML mtext Element to Display Plain Text
• SVG For Responsive Web Design