Support

Trouble Report

For immediate assistance browse through our support center. You can find answers to many questions in just a few minutes.

If still experiencing problems, send us a report.

required
Why the math question?

Online Simulation

And More

Top Tags

  1. Purdue BSME Students
  2. engineering cultures
  3. IREE
  4. PURDUE ENGINEER OF 2020 WORKSHOP
  5. engineering education
  6. engineering
  7. global engineering competency
  8. Mexico
  9. International Education
  10. Newport
  11. global collaborative engineering design
  12. Newport Declaration
  13. Mechanical Engineering
  14. global challenges
  15. senior design project
  16. Purdue University
  17. Funding Opportunities
  18. Mechanical Engineering Purdue University
  19. China
  20. energy
  21. education
  22. MIT
  23. short-term study
  24. Global
  25. Engineering profile

Other

Help: Wiki Math

Table of Contents

The Wiki supports LaTeX markup:

math_failure (math_notexvc): pi=\\frac{3}{4} \\sqrt{3}+24 \\int_0^{1/4}{\\sqrt{x-x^2}dx}

Mathematical Formula (LaTeX) can be inserted into text like this:

<math>Insert formula here</math>

For example: \\alpha^2+\\beta^2=1

…displays

math_failure (math_notexvc): \\alpha^2+\\beta^2=1

Displaying a Formula

The Wiki uses a subset of TeX markup, including some extensions from LaTeX and AMSLaTeX, for mathematical formulae. It generates either PNG images or simple HTML markup, depending on the complexity of the expression. While it can generate MathML, it is not currently used due to limited browser support. As browsers become more advanced and support for MathML becomes more wide-spread, this could be the preferred method of output as images have very real disadvantages.

Syntax

Math markup goes inside <math> ... </math>.

Pros of HTML

  1. In-line HTML formulae always align properly with the rest of the HTML text.
  2. The formula’s background, font size and face match the rest of HTML contents and the appearance respects CSS and browser settings.
  3. Pages using HTML will load faster.

Pros of TeX

  1. TeX is semantically superior to HTML. In TeX, “x“ means “mathematical variable

    math_failure (math_notexvc): x

    “, whereas in HTMLx“ could mean anything. Information has been irrevocably lost.
  2. TeX has been specifically designed for typesetting formulae, so input is easier and more natural, and output is more aesthetically pleasing.
  3. One consequence of point 1 is that TeX can be transformed into HTML, but not vice-versa. This means that on the server side we can always transform a formula, based on its complexity and location within the text, user preferences, type of browser, etc. Therefore, where possible, all the benefits of HTML can be retained, together with the benefits of TeX. It’s true that the current situation is not ideal, but that’s not a good reason to drop information/contents. It’s more a reason to help improve the situation.
  4. Another consequence of point 1 is that TeX can be converted to MathML for browsers which support it, thus keeping its semantics and allowing it to be rendered vectorially.
  5. When writing in TeX, editors need not worry about whether this or that version of this or that browser supports this or that HTML entity. The burden of these decisions is put on the server. This doesn’t hold for HTML formulae, which can easily end up being rendered wrongly or differently from the editor’s intentions on a different browser.
  6. TeX is the preferred text formatting language of most professional mathematicians, scientists, and engineers. It is easier to persuade them to contribute if they can write in TeX.

Example Formulas

The following are a few examples of formulas:

<math>\\sqrt{1-e^2}</math>

math_failure (math_notexvc): \\sqrt{1-e^2}

<math>\overbrace{ 1+2+\\cdots+100 }^{5050}</math>

math_failure (math_notexvc): \\overbrace{ 1+2+\\cdots+100 }^{5050}

<math>ax^2 + bx + c = 0</math>

math_failure (math_notexvc): ax^2 + bx + c = 0

<math>\\int_{-N}^{N} e^x\\, dx</math>

math_failure (math_notexvc): \\int_{-N}^{N} e^x\\, dx

Last modified on 15 Aug, 2008