Basic Mathematical Expressions

Basic mathematical expressions are the building blocks of mathematical typesetting in LaTeX. They include common elements like symbols, operators, fractions, superscripts, subscripts, roots, and more. Understanding how to create these expressions allows you to write clean and precise mathematical content, whether for simple equations or more complex formulas.

Operators and symbols

Operators and symbols are fundamental components of mathematical expressions. They allow you to represent arithmetic, relational, and logical operations, as well as special mathematical symbols, with clarity and precision.

Arithmetic operators

Arithmetic operators in LaTeX allow you to represent basic mathematical operations. LaTeX offers commands for commonly used symbols such as:

OperatorLatex CommandCode ExampleRendered Output
Addition+\[ a+b \]
addition operator
Subtraction-\[ a-b \]
subtraction operator
Multiplication\times\[ a \times b \]
multiplication operator
Division\div\[ a \div b \]
division operator
Dot product\cdot\[ a \cdot b \]
dot product operator

Relational operators

Relational operators are used to create clear and accurate comparisons in equations or inequalities. Below are common relational operators:

OperatorLatex CommandCode ExampleRendered Output
Equality=\[ a = b \]
equality operator
Inequality\neq\[ a \neq b \]
inequality operator
Less than<\[ a < b \]
less than operator
Greater than>\[ a > b \]
greater than operator
Less than or equal to\leq\[ a \leq b \]
less than or equal to operator
Greater than or equal to\geq\[ a \geq b \]
greater than or equal to operator

Logical operators

logical operators are used to express statements involving conjunctions, disjunctions, negations, implications, and equivalences. These operators are typically used in set theory, proofs, and logic-based problems. Below are common logical operators:

OperatorLatex CommandCode ExampleRendered Output
And\land\[ P \land Q \]
and operator
Or\lor\[ P \lor Q \]
or operator
Not\neg\[ \neg P \]
not operator
Implies\implies\[ P \implies Q \]
implies operator
If and only if\iff\[ P \iff Q \]
f and only if operator

Fractions

Fractions are written using the \frac{numerator}{denominator} command which produces a clear horizontal bar between the numerator and denominator.

ConceptCode ExampleRendered Output
Simple Fraction\[ \frac{a+b}{c+d} \]
simple fraction example
Nested Fraction\[ \frac{\frac{a}{b}}{c} \]
nested fraction example

Ratios

Ratios are typically represented using a colon : or a fraction. While the colon is straightforward, ratios expressed as fractions are typeset using \frac.

ConceptCode ExampleRendered Output
Ratio (Colon Format)\[ a : b \]
ratio with colon example
Ratio as Fraction\[ \frac{a}{b} \]
ratio as fraction example

Subscripts and superscripts

Subscripts and superscripts are used in mathematical expressions to denote indices, powers, exponents or additional contextual information. In LaTeX, these are added using the followings:

  • _ (underscore) for subscripts.
  • ^ (caret) for superscripts.
ConceptCode ExampleRendered Output
Subscript\[ x_i \]
subscript example
Superscript\[ y^j \]
superscript example
Multi-Character Subscripts and Superscripts\[ x_{ij} + y^{i+j} \]
multi-char subscript and superscript example
Combined Subscript and Superscript\[ x_{i+1}^{j+2} \]
combined subscript and superscript example
Nested Subscript and Superscript\[ x_{i_{j}}^{k^l} \]
nested subscript and superscript
Learn more ➔

Roots

Roots in LaTeX are mathematical expressions typeset using \sqrt{} for square roots and \sqrt[n]{} for n-th roots, for example:

ConceptCode ExampleRendered Output
Square Root\[ \sqrt{x} \]
square root example
Cube Root\[ \sqrt[3]{x} \]
cube root example
General n-th Root\[ \sqrt[n]{x+y} \]
nth root example
Learn more ➔

Logarithms

Logarithms in LaTeX are represented using \ln for natural logs, \log for base-10 or unspecified bases, and \log_{base}{} to define logarithms with a specific base.

ConceptCode ExampleRendered Output
Natural Logarithm (ln)\[ \ln{x} \]
natural logarithm example
Base-10 Logarithm (log)\[ \log{x} \]
base-10 logarithm example
Logarithm with Base\[ \log_{2}{x} \]
logarithm with base example
Learn more ➔

Summation and products

Summation (∑) and product (∏) notations are essential for representing series and multiplicative sequences in mathematical expressions.

ConceptCode ExampleRendered Output
Summation without limits\[ \sum x_i \]
summation without limits example
Summation with upper limit\[ \sum^{n} x_i \]
summation with upper limit example
Summation with lower limit\[ \sum_{i=1} x_i \]
summation with lower limit example
Summation with both limits\[ \sum_{i=1}^{n} x_i \]
summation with both limits example
ConceptCode ExampleRendered Output
Product without limits\[ \prod x_i \]
product without limits example
Product with upper limit\[ \prod^{n} x_i \]
product with upper limit example
Product with lower limit\[ \prod_{i=1} x_i \]
product with lower limit example
Product with both limits\[ \prod_{i=1}^{n} x_i \]
product with both limits example

Trigonometric functions

Trigonometric functions playing a crucial role in analyzing angles, ratios, and periodic phenomena:

ConceptFunctionCode ExampleRendered Output
Basic Trigonometric FunctionsSine\[ \sin(x) \]
sine function example
Cosine\[ \cos(x) \]
Cosine function example
Tangent\[ \tan(x) \]
Tangent function example
Reciprocal Trigonometric FunctionsCotangent\[ \cot(x) \]
Cotangent function example
Secant\[ \sec(x) \]
Secant function example
Cosecant\[ \csc(x) \]
Cosecant function example
Inverse Trigonometric FunctionsArcsine\[ \arcsin(x) \]
Arcsine function example
Arccosine\[ \arccos(x) \]
Arccosine function example
Hyperbolic FunctionsArctangent\[ \arctan(x) \]
Arctangent function example
Hyperbolic Sine\[ \sinh(x) \]
hyperbolic sine function example
Hyperbolic Cosine\[ \cosh(x) \]
hyperbolic cosine function example
Hyperbolic Tangent\[ \tanh(x) \]
hyperbolic tangent function example
Hyperbolic Cotangent\[ \coth(x) \]
hyperbolic cotangent function example

Integral

Integrals are a core concept in calculus, representing the area under a curve, accumulation of quantities, or anti-derivatives of functions.

ConceptCode ExampleRendered Output
Indefinite integral\[ \int f(x) \, dx \]
indefinite integral example
Definite integral\[ \int_a^b f(x) \, dx \]
definite integral example
Double integral\[ \iint_R f(x, y) \, dx \, dy \]
double integral example
Triple integral\[ \iiint_V f(x, y, z) \, dx \, dy \, dz \]
triple integral example
Contour integral\[ \oint f(z) \, dz \]
contour integral example
Line integral\[ \int_C f(x, y) \, ds \]
line integral example

Limits

Limits describe the behavior of a function as the input approaches a specific value. The basic syntax for expressing a general limit is \lim_{<variable> \to <value>} <expression>, for example:

ConceptCode ExampleRendered Output
Limit as x approaches a\[ \int f(x) \, dx \]
limit example
Limit to infinity\[ \lim_{x \to \infty} f(x) \]
limit example

Derivatives

Derivatives measure the rate of change of a function with respect to its variable and are essential for understanding slopes, rates, and instantaneous changes.

ConceptCode ExampleRendered Output
First derivative (Prime notation)\[ f'(x) \]
first derivative (prime notation) example
First derivative (Leibniz notation)\[ \frac{d}{dx}f(x) \]
first derivative (Leibniz notation) example
Second derivative(Prime notation)\[ f''(x) \]
second derivative (prime notation) example
Second derivative (Leibniz notation)\[ \frac{d^2}{dx^2}f(x) \]
second derivative (Leibniz notation) example
Higher-order derivative\[ f^{(n)}(x) \]
higher-order derivative example
Partial derivative\[ \frac{\partial f}{\partial x} \]
partial derivative example
Higher-order partial derivative\[ \frac{\partial^2 f}{\partial x^2} \]
higher-order partial derivative example
Gradient\[ \nabla f \]
gradient example

Greek Letter

Below is a table of important Greek letters frequently used in mathematical and scientific contexts.

Greek LetterLowercase CommandUppercase CommandRendered Output
Alpha\alphaA
Greek letter example: alpha
Beta\betaB
Greek letter example: beta
Gamma\gamma\Gamma
Greek letter example: gamma
Delta\delta\Delta
Greek letter example: delta
Epsilon\epsilonE
Greek letter example: epsilon
Theta\theta\Theta
Greek letter example: theta
Lambda\lambda\Lambda
Greek letter example: lambda
Pi\pi\Pi
Greek letter example: pi
Sigma\sigma\Sigma
Greek letter example: sigma
Omega\omega\Omega
Greek letter example: omega

In conclusion, the "Basic Mathematical Expressions" section provides essential tools for writing a wide range of mathematical notations in LaTeX. By understanding how to use operators, symbols, fractions, ratios, subscripts, superscripts, and other key expressions, you can easily structure a variety of mathematical expressions.