diff options
author | Marcel Ribeiro-Dantas <mribeirodantas@seqera.io> | 2023-10-01 17:52:27 -0300 |
---|---|---|
committer | Marcel Ribeiro-Dantas <mribeirodantas@seqera.io> | 2023-10-01 17:52:27 -0300 |
commit | c6d650df763f0cf5708c3a96891b97c4544f5cec (patch) | |
tree | 48677398b33cbba5215d979d613a7661b75134ec /set-theory.html.markdown | |
parent | 2ef49e504b714ce1a2351a662252db0205eec239 (diff) |
[set-theory/en] add author, fix vowerls list
Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Diffstat (limited to 'set-theory.html.markdown')
-rw-r--r-- | set-theory.html.markdown | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/set-theory.html.markdown b/set-theory.html.markdown index f89345c0..144b4bbf 100644 --- a/set-theory.html.markdown +++ b/set-theory.html.markdown @@ -2,7 +2,9 @@ category: Algorithms & Data Structures name: Set theory contributors: + - ["Andrew Ryan Davis", "https://github.com/AndrewDavis1191"] --- + Set theory is a branch of mathematics that studies sets, their operations, and their properties. * A set is a collection of disjoint items. @@ -59,7 +61,7 @@ Long lists may be shortened with ellipses as long as the context is clear. For e Set builder notation is a more descriptive way of constructing a set. It relies on a _subject_ and a _predicate_ such that `S = { subject : predicate }`. For example, ``` -A = { x : x is a vowel } = { a, e, i, o, u, y} +A = { x : x is a vowel } = { a, e, i, o, u } B = { x : x ∈ N, x < 10 } = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } C = { x : x = 2k, k ∈ N } = { 0, 2, 4, 6, 8, ... } ``` |