generated from jobindjohn/obsidian-publish-mkdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,3 +60,5 @@ | |
`\displaystyle`: Make math expressions large | ||
|
||
`\approx`: $\approx$ | ||
|
||
`n \choose x`: $n \choose x$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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$. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |