From 432c894f4916bfca4bb706bed4d9f220bc6a244d Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Fri, 13 Apr 2018 17:49:39 +0300 Subject: [PATCH] Update READMEs. --- src/algorithms/math/power-set/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/algorithms/math/power-set/README.md b/src/algorithms/math/power-set/README.md index 0857e680..5551ea35 100644 --- a/src/algorithms/math/power-set/README.md +++ b/src/algorithms/math/power-set/README.md @@ -3,3 +3,10 @@ Power set of a set A is the set of all of the subsets of A. Eg. for `{x, y, z}`, the subsets are : `{{}, {x}, {y}, {z}, {x, y}, {x, z}, {y, z}, {x, y, z}}` + +![Power Set](https://www.mathsisfun.com/sets/images/power-set.svg) + +## References + +* [Wikipedia](https://en.wikipedia.org/wiki/Power_set) +* [Math is Fun](https://www.mathsisfun.com/sets/power-set.html)