vault backup: 2024-12-13 01:56:36
This commit is contained in:
parent
da323ae882
commit
51e3959f11
@ -80,7 +80,7 @@
|
|||||||
"iconColor": "#5773ff"
|
"iconColor": "#5773ff"
|
||||||
},
|
},
|
||||||
"Statistics and Probability/R": "📊",
|
"Statistics and Probability/R": "📊",
|
||||||
"Discrete Structures/Midterm prep.md": {
|
"Discrete Structures/Midterm/Midterm prep.md": {
|
||||||
"iconName": "LiBookOpenCheck",
|
"iconName": "LiBookOpenCheck",
|
||||||
"iconColor": "#ffbb00"
|
"iconColor": "#ffbb00"
|
||||||
}
|
}
|
||||||
|
25
.obsidian/workspace.json
vendored
25
.obsidian/workspace.json
vendored
@ -10,15 +10,27 @@
|
|||||||
{
|
{
|
||||||
"id": "25537c3876ede1e3",
|
"id": "25537c3876ede1e3",
|
||||||
"type": "leaf",
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "excalidraw",
|
||||||
|
"state": {
|
||||||
|
"file": "Discrete Structures/Midterm/ex 1.md"
|
||||||
|
},
|
||||||
|
"icon": "excalidraw-icon",
|
||||||
|
"title": "ex 1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "91554391c16f6712",
|
||||||
|
"type": "leaf",
|
||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "Discrete Structures/Midterm prep.md",
|
"file": "Discrete Structures/Counting.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": false
|
"source": false
|
||||||
},
|
},
|
||||||
"icon": "lucide-file",
|
"icon": "lucide-file",
|
||||||
"title": "Midterm prep"
|
"title": "Counting"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -200,15 +212,17 @@
|
|||||||
},
|
},
|
||||||
"active": "25537c3876ede1e3",
|
"active": "25537c3876ede1e3",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"Discrete Structures/Recurrence relations.md",
|
||||||
|
"Discrete Structures/Counting.md",
|
||||||
|
"Discrete Structures/Midterm/ex 1.md",
|
||||||
|
"Discrete Structures/Midterm/Midterm prep.md",
|
||||||
|
"Discrete Structures/Midterm",
|
||||||
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
"Extracurricular/CANSAT/img/Pasted image 20241206134156.png",
|
||||||
"Extracurricular/CANSAT/Parts Proposal.md",
|
"Extracurricular/CANSAT/Parts Proposal.md",
|
||||||
"Untitled.md",
|
"Untitled.md",
|
||||||
"Untitled.canvas",
|
"Untitled.canvas",
|
||||||
"Discrete Structures/Midterm prep.md",
|
|
||||||
"Discrete Structures/Counting.md",
|
|
||||||
"Discrete Structures/Mathematical Data Structures.md",
|
"Discrete Structures/Mathematical Data Structures.md",
|
||||||
"Discrete Structures/Relations and Digraphs.md",
|
"Discrete Structures/Relations and Digraphs.md",
|
||||||
"Discrete Structures/Recurrence relations.md",
|
|
||||||
"Discrete Structures/Mathematical Proofs (Induction).md",
|
"Discrete Structures/Mathematical Proofs (Induction).md",
|
||||||
"Advanced Algorithms/Graphs.md",
|
"Advanced Algorithms/Graphs.md",
|
||||||
"Advanced Algorithms/P vs. NP.md",
|
"Advanced Algorithms/P vs. NP.md",
|
||||||
@ -245,7 +259,6 @@
|
|||||||
"Discrete Structures/img",
|
"Discrete Structures/img",
|
||||||
"Algorithmic Programming Contests",
|
"Algorithmic Programming Contests",
|
||||||
"Functional Programming/assets",
|
"Functional Programming/assets",
|
||||||
"Extracurricular/CANSAT",
|
|
||||||
"Web Engineering/canvae/server_client.canvas",
|
"Web Engineering/canvae/server_client.canvas",
|
||||||
"Advanced Programming/projects/second/Refactoring.canvas",
|
"Advanced Programming/projects/second/Refactoring.canvas",
|
||||||
"Advanced Programming/assets/assignment/assignment_organization.canvas",
|
"Advanced Programming/assets/assignment/assignment_organization.canvas",
|
||||||
|
@ -9,7 +9,8 @@ type: theoretical
|
|||||||
A permutation is an arrangement of objects in a specific order.
|
A permutation is an arrangement of objects in a specific order.
|
||||||
|
|
||||||
- Without Repetition[^1]: The number of permutations of $n$ distinct objects taken $r$ at a time is denoted by $nP_r$ and calculated as:
|
- Without Repetition[^1]: The number of permutations of $n$ distinct objects taken $r$ at a time is denoted by $nP_r$ and calculated as:
|
||||||
$$
|
Let f (n) = 7n + 3n2 + n2n and g(n) = 3n
|
||||||
|
n . Prove that f (n) = O(g(n))$$
|
||||||
nP_r = \frac{n!}{(n - r)!}
|
nP_r = \frac{n!}{(n - r)!}
|
||||||
$$
|
$$
|
||||||
|
|
||||||
|
8889
Discrete Structures/Midterm/ex 1.md
Normal file
8889
Discrete Structures/Midterm/ex 1.md
Normal file
File diff suppressed because it is too large
Load Diff
@ -37,7 +37,7 @@ A recurrence relation is an equation that defines a sequence based on its earlie
|
|||||||
x^k - a_1 x^{k-1} - a_2 x^{k-2} - \ldots - a_k = 0
|
x^k - a_1 x^{k-1} - a_2 x^{k-2} - \ldots - a_k = 0
|
||||||
$$
|
$$
|
||||||
|
|
||||||
- The roots of the characteristic equation determine the explicit formula for the sequence. The sources focus on degree-2 relations, but the method generalizes to any degree.
|
- The roots of the characteristic equation determine the explicit formula for the sequence.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user