Math: Difference between revisions
Line 24: | Line 24: | ||
=== Calculus === | === Calculus === | ||
Sum: <syntaxhighlight lang="html5" inline><math>\sum_{i=1}^{n}i=\frac{n(n+1)}{2}</math></syntaxhighlight> gives <math>\sum_{i=1}^{n}i=\frac{n(n+1)}{2}</math><br> | Sum: <syntaxhighlight lang="html5" inline><math>\sum_{i=1}^{n}i=\frac{n(n+1)}{2}</math></syntaxhighlight> gives <math>\sum_{i=1}^{n}i=\frac{n(n+1)}{2}</math><br><br> | ||
Limit: <syntaxhighlight lang="html5" inline><math>\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math></syntaxhighlight> gives <math>\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math><br><br> | Limit: <syntaxhighlight lang="html5" inline><math>\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math></syntaxhighlight> gives <math>\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math><br><br> | ||
Integral: <syntaxhighlight lang="html5" inline><math>\int_{1}^{x+1}\frac{1}{x}dx</math></syntaxhighlight> gives <math>\int_{1}^{x+1}\frac{1}{x}dx</math><br> | Integral: <syntaxhighlight lang="html5" inline><math>\int_{1}^{x+1}\frac{1}{x}dx</math></syntaxhighlight> gives <math>\int_{1}^{x+1}\frac{1}{x}dx</math><br> |
Revision as of 15:52, 25 August 2022
Basics[edit]
To render any math equation, the math equation must be between <math></math>
i.e., <math>f(x)=x^2</math>
gives .
Common math commands[edit]
Superscript & Subscript[edit]
Superscript: <math>x^{5+y}</math>
gives
Subscript: <math>x_{5+t}</math>
gives
Together: <math>x_{5+t}^{5+y}</math>
gives
Fractions & Radicals[edit]
Fractions: <math>\frac{1}{x}</math>
gives
Square root: <math>\sqrt{x+1}</math>
gives
General radical: <math>\sqrt[3]{64}=4</math>
gives
Trig. & Log Functions[edit]
Sin, cos, tan, etc.: <math>\sin{(\theta)}</math>
gives
Arcsin, arccos, arctan, etc.: <math>\arcsin{(\theta)}</math>
gives
Log: <math>\log_{5}{5^2}=2</math>
gives
Ln: <math>\ln{e^3}=3</math>
gives
Calculus[edit]
Sum: <math>\sum_{i=1}^{n}i=\frac{n(n+1)}{2}</math>
gives
Limit: <math>\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}</math>
gives
Integral: <math>\int_{1}^{x+1}\frac{1}{x}dx</math>
gives
123