aboutsummaryrefslogtreecommitdiff
path: root/tables/mathematical-operators-and-functions.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tables/mathematical-operators-and-functions.typ')
-rw-r--r--tables/mathematical-operators-and-functions.typ22
1 files changed, 22 insertions, 0 deletions
diff --git a/tables/mathematical-operators-and-functions.typ b/tables/mathematical-operators-and-functions.typ
new file mode 100644
index 0000000..d0c93eb
--- /dev/null
+++ b/tables/mathematical-operators-and-functions.typ
@@ -0,0 +1,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>