1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 05:21:26 +02:00

[set-theory/fr] Added French translation for Set theory (#4168)

* Update set-theory.html.markdown

Fixed a minor typo.

* Add files via upload

Added a french translation for set theory.

* Add suggested changes

J'ai fait presque tous les changements suggérés.

* Fix spacing before semicolons
This commit is contained in:
kieutrang1729
2021-07-11 16:28:54 +02:00
committed by GitHub
parent e4d92f0a65
commit a1286822de
2 changed files with 135 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ D = { 2x : x ∈ N } = { 0, 2, 4, 6, 8, ... }
## Special Sets
### The Power Set
* Let `A` be any set. The set that contains all possible subsets of `A` is called a "power set" and is written as `P(A)`. If the set `A` contains `n` elements, then `P(A)` contains `2^N` elements.
* Let `A` be any set. The set that contains all possible subsets of `A` is called a "power set" and is written as `P(A)`. If the set `A` contains `n` elements, then `P(A)` contains `2^n` elements.
```
P(A) = { x : x ⊆ A }