Skip to content

Commit

Permalink
Combinatorics terms
Browse files Browse the repository at this point in the history
  • Loading branch information
jzkyu committed Apr 20, 2024
1 parent ca49640 commit cbfe3fb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/Public/Math/LaTeX cheat sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,5 @@
`\displaystyle`: Make math expressions large

`\approx`: $\approx$

`n \choose x`: $n \choose x$
4 changes: 4 additions & 0 deletions docs/Public/Math/bijection.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
A [[function]] is a *bijection* when it is both [[onto]] and [[one to one]].

Translation: Each element $a \in A$ is matched with a unique element $f(a) \in B$, and every element of $B$ is matched with something from $A$.

11 changes: 11 additions & 0 deletions docs/Public/Math/one to one.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
A [[function]] is *one-to-one* if

$$
f(a) = f(b) \implies a = b
$$
Another way:

$$
a \not = a' \implies f(a) \not = f(a')
$$
Translation: Distinct inputs give distinct outputs, no two arrays have the same head
5 changes: 5 additions & 0 deletions docs/Public/Math/onto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
A [[function]] is *onto* if for every $y$, there is an $x$ such that $f(x) = y$.

For each $b \in B$ there exists at least one $a \in A$ such that $f(a) = b$.

Translation: Every element of $B$ is "pointed to"

0 comments on commit cbfe3fb

Please sign in to comment.