Help:Math Help part 4

From Amateur Radio Wiki
Jump to navigation Jump to search

Please note that non standard characters will probably not render properly

The complete helpfile is over 50kB in size. Some browsers may have difficulty in rendering the page, because many have a notional upper limit of 32kB per page. Please choose from one of the following options to access the help file:

Related Math Help pages

  • Math Help part 1 - contains information on Syntax, Rendering and Pros and Cons of TeX and HTML for math functions
  • Math Help part 2 - contains information on Functions, Symbols and Special characters
  • Math Help part 3 - contains information on Subscripts, Superscripts and Integrals
  • Math Help part 6 - contains information on Parenthesising big exprssions, Brackets and Bars
  • Math Help part 7 - contains information about Spacing, Aligning with normal text flow,Forced PNG rendering, Color and examples.

This wiki uses a subset of TeX markup, including some extensions from LaTeX and AMS-LaTeX, for mathematical formulae. It generates either PNG images or simple HTML markup, depending on user preferences and the complexity of the expression. In the future, as more browsers are smarter, it will be able to generate enhanced HTML or even MathML in many cases.

More precisely, MediaWiki filters the markup through Texvc, which in turn passes the commands to TeX for the actual rendering. Thus, only a limited part of the full TeX language is supported; see below for details.


Fractions, matrices, multilines

Feature Syntax How it looks rendered
Fractions \frac{2}{4}=0.5 <math>\frac{2}{4}=0.5</math>
Small Fractions \tfrac{2}{4} = 0.5 <math>\tfrac{2}{4} = 0.5</math>
Large (normal) Fractions \dfrac{2}{4} = 0.5 <math>\dfrac{2}{4} = 0.5</math>
Large (nestled) Fractions \cfrac{2}{c + \cfrac{2}{d + \cfrac{2}{4}}} = a <math>\cfrac{2}{c + \cfrac{2}{d + \cfrac{2}{4}}} = a</math>
Binomial coefficients \binom{n}{k} <math>\binom{n}{k}</math>
Small Binomial coefficients \tbinom{n}{k} <math>\tbinom{n}{k}</math>
Large (normal) Binomial coefficients \dbinom{n}{k} <math>\dbinom{n}{k}</math>
Matrices
\begin{matrix}
  x & y \\
  z & v 
\end{matrix}
<math>\begin{matrix} x & y \\ z & v \end{matrix}</math>
\begin{vmatrix}
  x & y \\
  z & v 
\end{vmatrix}
<math>\begin{vmatrix} x & y \\ z & v \end{vmatrix}</math>
\begin{Vmatrix}
  x & y \\
  z & v
\end{Vmatrix}
<math>\begin{Vmatrix} x & y \\ z & v \end{Vmatrix}</math>
\begin{bmatrix}
  0      & \cdots & 0      \\
  \vdots & \ddots & \vdots \\ 
  0      & \cdots & 0
\end{bmatrix}
<math>\begin{bmatrix} 0 & \cdots & 0 \\ \vdots

& \ddots & \vdots \\ 0 & \cdots &

0\end{bmatrix} </math>
\begin{Bmatrix}
  x & y \\
  z & v
\end{Bmatrix}
<math>\begin{Bmatrix} x & y \\ z & v \end{Bmatrix}</math>
\begin{pmatrix}
  x & y \\
  z & v 
\end{pmatrix}
<math>\begin{pmatrix} x & y \\ z & v \end{pmatrix}</math>
\bigl( \begin{smallmatrix}
  a&b\\ c&d
\end{smallmatrix} \bigr)
<math>

\bigl( \begin{smallmatrix}

 a&b\\ c&d

\end{smallmatrix} \bigr)

</math>
Case distinctions
f(n) = 
\begin{cases} 
  n/2,  & \mbox{if }n\mbox{ is even} \\
  3n+1, & \mbox{if }n\mbox{ is odd} 
\end{cases}
<math>f(n) =

\begin{cases}

 n/2,  & \mbox{if }n\mbox{ is even} \\ 
 3n+1, & \mbox{if }n\mbox{ is odd} 
\end{cases} </math>
Multiline equations
\begin{align}
 f(x) & = (a+b)^2 \\
      & = a^2+2ab+b^2 \\
\end{align}
<math>

\begin{align}

f(x) & = (a+b)^2 \\
     & = a^2+2ab+b^2 \\

\end{align}

</math>
\begin{alignat}{2}
 f(x) & = (a-b)^2 \\
      & = a^2-2ab+b^2 \\
\end{alignat}
<math>

\begin{alignat}{2}

f(x) & = (a-b)^2 \\
     & = a^2-2ab+b^2 \\

\end{alignat}

</math>
Multiline equations (must define number of colums used ({lcr}) (should not be used unless needed)
\begin{array}{lcl}
  z        & = & a \\
  f(x,y,z) & = & x + y + z  
\end{array}
<math>\begin{array}{lcl}
 z        & = & a \\
 f(x,y,z) & = & x + y + z  
\end{array}</math>
Multiline equations (more)
\begin{array}{lcr}
  z        & = & a \\
  f(x,y,z) & = & x + y + z     
\end{array}
<math>\begin{array}{lcr}
 z        & = & a \\
 f(x,y,z) & = & x + y + z     
\end{array}</math>
Breaking up a long expression so that it wraps when necessary

<math>f(x) \,\!</math>
<math>= \sum_{n=0}^\infty a_n x^n </math>
<math>= a_0+a_1x+a_2x^2+\cdots</math>

<math>f(x) \,\!</math><math>= \sum_{n=0}^\infty a_n x^n </math><math>= a_0 +a_1x+a_2x^2+\cdots</math>

Simultaneous equations
\begin{cases}
    3x + 5y +  z \\
    7x - 2y + 4z \\
   -6x + 3y + 2z 
\end{cases}
<math>\begin{cases} 3x + 5y + z \\ 7x - 2y + 4z \\ -6x + 3y + 2z \end{cases}</math>