vault backup: 2025-03-25 09:46:37
This commit is contained in:
parent
647d705823
commit
7aed5aa03d
27
.obsidian/plugins/obsidian-git/data.json
vendored
27
.obsidian/plugins/obsidian-git/data.json
vendored
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"commitMessage": "vault backup: {{date}}",
|
||||||
|
"autoCommitMessage": "vault backup: {{date}}",
|
||||||
|
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
|
||||||
|
"autoSaveInterval": 5,
|
||||||
|
"autoPushInterval": 0,
|
||||||
|
"autoPullInterval": 5,
|
||||||
|
"autoPullOnBoot": true,
|
||||||
|
"disablePush": false,
|
||||||
|
"pullBeforePush": true,
|
||||||
|
"disablePopups": false,
|
||||||
|
"listChangedFilesInMessageBody": false,
|
||||||
|
"showStatusBar": true,
|
||||||
|
"updateSubmodules": false,
|
||||||
|
"syncMethod": "merge",
|
||||||
|
"customMessageOnAutoBackup": false,
|
||||||
|
"autoBackupAfterFileChange": false,
|
||||||
|
"treeStructure": false,
|
||||||
|
"refreshSourceControl": true,
|
||||||
|
"basePath": "",
|
||||||
|
"differentIntervalCommitAndPush": false,
|
||||||
|
"changedFilesInStatusBar": false,
|
||||||
|
"showedMobileNotice": true,
|
||||||
|
"refreshSourceControlTimer": 7000,
|
||||||
|
"showBranchStatusBar": true,
|
||||||
|
"setLastSaveToLastCommit": false
|
||||||
|
}
|
@ -56,8 +56,13 @@ $f(x_i)$ is the *height* of each sub-interval, and $\Delta x$ is the change in t
|
|||||||
## Examples
|
## Examples
|
||||||
> Find the exact value of the integral $\int_0^1 5x \space dx$
|
> Find the exact value of the integral $\int_0^1 5x \space dx$
|
||||||
|
|
||||||
Relevant formula:
|
Relevant formulas:
|
||||||
$$ \sum_{i = 1}^n = \dfrac{(n)(n + 1)}{2} $$
|
$$ \sum_{i = 1}^n = \dfrac{(n)(n + 1)}{2} $$
|
||||||
|
$ \Delta x = \dfrac{1 - 0$
|
||||||
1. $\int_0^1 5x \space dx = \lim_{n \to \infty} \sum_{i=1}^n 5(x_i) * \Delta x$
|
1. $\int_0^1 5x \space dx = \lim_{n \to \infty} \sum_{i=1}^n 5(x_i) * \Delta x$
|
||||||
2. $= \lim_{n \to \infty} \sum_{i=1}^n 5(\frac{1}{n} \cdot i) \cdot \frac{1}{n}$
|
2. $= \lim_{n \to \infty} \sum_{i=1}^n 5(\frac{1}{n} \cdot i) \cdot \frac{1}{n}$
|
||||||
3. $
|
3. $= \lim_{n \to \infty} \sum_{i = 1}^n \dfrac{5}{n^2}\cdot i$
|
||||||
|
4. $= \lim_{n \to \infty} \dfrac{5}{n^2} \sum_{i = 1}^n i$
|
||||||
|
5. $= \lim_{x \to \infty} \dfrac{5}{n^2} \cdot \dfrac{n(n + 1)}{2}$
|
||||||
|
6. $= \lim_{n \to \infty} \dfrac{5n^2 + 5n}{2n^2}$
|
||||||
|
7. $= \dfrac{5}{2}$
|
Loading…
x
Reference in New Issue
Block a user