2018-09-30 23:01:58 +01:00
---
id: 599d15309e88c813a40baf58
2020-11-27 19:02:05 +01:00
title: Entropy
2018-09-30 23:01:58 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302254
2021-01-13 03:31:00 +01:00
dashedName: entropy
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-03-02 17:42:56 +09:00
Calculate the Shannon entropy H of a given input string.
2020-11-27 19:02:05 +01:00
2019-03-02 17:42:56 +09:00
Given the discreet random variable $X$ that is a string of $N$ "symbols" (total characters) consisting of $n$ different characters (n=2 for binary), the Shannon entropy of X in bits/symbol is:
2020-11-27 19:02:05 +01:00
$H_2(X) = -\\sum\_{i=1}^n \\frac{count_i}{N} \\log_2 \\left(\\frac{count_i}{N}\\right)$
2019-03-02 17:42:56 +09:00
where $count_i$ is the count of character $n_i$.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
`entropy` should be a function.
```js
assert(typeof entropy === 'function');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`entropy("0")` should return `0`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(entropy('0'), 0);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`entropy("01")` should return `1`
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert.equal(entropy('01'), 1);
```
2020-09-15 09:57:40 -07:00
2020-11-27 19:02:05 +01:00
`entropy("0123")` should return `2`
```js
assert.equal(entropy('0123'), 2);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`entropy("01234567")` should return `3`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert.equal(entropy('01234567'), 3);
```
`entropy("0123456789abcdef")` should return `4`
```js
assert.equal(entropy('0123456789abcdef'), 4);
```
`entropy("1223334444")` should return `1.8464393446710154`
```js
assert.equal(entropy('1223334444'), 1.8464393446710154);
```
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
function entropy(s) {
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
}
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
function entropy(s) {
2020-11-27 19:02:05 +01:00
// Create a dictionary of character frequencies and iterate over it.
2018-09-30 23:01:58 +01:00
function process(s, evaluator) {
let h = Object.create(null),
k;
2018-10-02 15:02:53 +01:00
s.split('').forEach(c => {
2018-09-30 23:01:58 +01:00
h[c] & & h[c]++ || (h[c] = 1); });
if (evaluator) for (k in h) evaluator(k, h[k]);
return h;
}
2020-11-27 19:02:05 +01:00
// Measure the entropy of a string in bits per symbol.
2018-09-30 23:01:58 +01:00
let sum = 0,
len = s.length;
process(s, (k, f) => {
const p = f / len;
sum -= p * Math.log(p) / Math.log(2);
});
return sum;
}
```