diff --git a/.obsidian/plugins/obsidian-git/data.json b/.obsidian/plugins/obsidian-git/data.json index e69de29..bef4c6e 100644 --- a/.obsidian/plugins/obsidian-git/data.json +++ b/.obsidian/plugins/obsidian-git/data.json @@ -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 +} \ No newline at end of file diff --git a/education/math/MATH1210 (calc 1)/Integrals.md b/education/math/MATH1210 (calc 1)/Integrals.md index 3e301c5..016a988 100644 --- a/education/math/MATH1210 (calc 1)/Integrals.md +++ b/education/math/MATH1210 (calc 1)/Integrals.md @@ -56,8 +56,13 @@ $f(x_i)$ is the *height* of each sub-interval, and $\Delta x$ is the change in t ## Examples > 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} $$ +$ \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$ 2. $= \lim_{n \to \infty} \sum_{i=1}^n 5(\frac{1}{n} \cdot i) \cdot \frac{1}{n}$ -3. $ \ No newline at end of file +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}$ \ No newline at end of file