diff options
author | Justice Almanzar <superdash993@gmail.com> | 2020-08-24 16:45:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-24 16:45:36 -0400 |
commit | 26d2733ab775e1138bfd83fe14253035275671b9 (patch) | |
tree | 49e513bde0893c6d4bcb3bba0736f821ec0fdf56 /set-theory.html.markdown | |
parent | 83a249250c2c2945f2064d0ab1ca826ec1844c56 (diff) |
correct equality statement
Diffstat (limited to 'set-theory.html.markdown')
-rw-r--r-- | set-theory.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/set-theory.html.markdown b/set-theory.html.markdown index 6fb657ed..e292464c 100644 --- a/set-theory.html.markdown +++ b/set-theory.html.markdown @@ -82,7 +82,7 @@ D = { 2x : x ∈ N } = { 0, 2, 4, 6, 8, ... } * If two sets contain the same items then we say the sets are equal, e.g. `A = B`. * Order does not matter when determining set equality, e.g. `{ 1, 2, 3, 4 } = { 2, 3, 1, 4 }`. * Sets are disjoint, meaning elements cannot be repeated, e.g. `{ 1, 2, 2, 3, 4, 3, 4, 2 } = { 1, 2, 3, 4 }`. -* Two sets `A` and `B` are equal if and only if `A ⊂ B` and `B ⊂ A`. +* Two sets `A` and `B` are equal if and only if `A ⊆ B` and `B ⊆ A`. ## Special Sets |