-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.qmd
More file actions
59 lines (49 loc) · 1.76 KB
/
Copy pathtemplate.qmd
File metadata and controls
59 lines (49 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
title: Axioms
terms:
- term: Natural number
regex: "[Nn]atural numbers?"
associatedMacros:
- command: "N"
description: "The Natural Numbers: $1, 2, 3, ...$"
macro: '\\mathbb{N}'
- term: associativity
regex: "[Aa]ssociativ[ei]t?y?"
id: def-associativity
- term: identity
regex: "[Ii]dentit[yi]e?s?"
id: def-identity
- term: inverse
regex: "[Ii]nverses?"
id: def-inverse
macros:
- command: Inverse
macro: '{#1}^{-1}'
variables: 1
- command: Set
macro: '{S}'
- command: Operation
macro: '{#1}\\cdot{#2}'
variables: 2
- command: Identity
macro: '{e}'
author: Kai Prince SFHEA
date: last-modified
---
# Introduction
::: {#def-associativity templateMap="[\\Set,\\Operation,\\Identity]"}
## associativity
For all ${#1},{#2},{#3}$ in $\Set$, one has $\Operation{(\Operation{#1}{#2})}{#3}=\Operation{#1}{(\Operation{#2}{#3})}$.
:::
::: {#def-identity templateMap="[\\Set,\\Operation,\\Identity]"}
## identity
There exists an element $\Identity$ in $\Set$ such that, for every ${#1}$ in $\Set$, one has $\Operation{\Identity}{#1}={#1}$ and $\Operation{#1}{\Identity}={#1}$. Such an element is unique and is called the *identity element*.
:::
:::: {#def-inverse templateMap="[\\Set,\\Operation,\\Identity]"}
## unique inverse
For each ${#1}$ in $\Set$, there exists an element ${#2}$ in $\Set$ such that $\Operation{#1}{#2}=\Identity$ and $\Operation{#2}{#1}=\Identity$, where $\Identity$ is the identity element.
For each ${#1}$, the element ${#2}$ is unique and is called the *inverse* of ${#2}$ and is denoted $\Inverse{#1}$.
::::
Test @def-associativity
# More Information
You can learn more about controlling the appearance of HTML output here: <https://quarto.org/docs/output-formats/html-basics.html>