aboutsummaryrefslogtreecommitdiff
path: root/tables/mathematical-operators-and-functions.typ
blob: d0c93ebba388962053ca6437714b293e71734a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "@preview/diverential:0.3.0": *

#figure(
  table(
    columns: 2,
    table.header([Notation], [Meaning]),
    [$sum$], [Summation],
    [$product$], [Product],
    [$sqrt("")$], [Square root],
    [$dvp(y, x)$], [Partial derivative of $y$ with respect to $x$],
    [$dv(y, x)$], [Total derivative of $y$ with respect to $x$],
    [$integral$], [Integral],
    [$log_10$], [Common logarithm (base $10$)],
    [$ln$], [Natural logarithm (base $e$)],
    [$exp$], [Exponential function],
    [$abs(x)$], [Absolute value of $x$],
    [$x mod y$], [Modulo operation (remainder of $x$ divided by $y$)],
    [$in$], [Element of a set],
    [$upright("RSS")$], [Root-sum-square: $sqrt(x_1^2 + x_2^2 + ... + x_n^2)$],
  ),
  caption: [Mathematical operators and functions],
) <table-mathematical-operators-and-functions>