Files
gikf d269909faa fix(curriculum): clean-up Project Euler 381-400 (#43024)
* fix: clean-up Project Euler 381-400

* fix: missing image extension

* fix: missing subscripts

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
2021-07-30 07:59:29 -07:00

992 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4f21000cf542c510004 Problem 389: Platonic Dice 5 302053 problem-389-platonic-dice

--description--

An unbiased single 4-sided die is thrown and its value, T, is noted.

T unbiased 6-sided dice are thrown and their scores are added together. The sum, C, is noted.

C unbiased 8-sided dice are thrown and their scores are added together. The sum, O, is noted.

O unbiased 12-sided dice are thrown and their scores are added together. The sum, D, is noted.

D unbiased 20-sided dice are thrown and their scores are added together. The sum, I, is noted.

Find the variance of I, and give your answer rounded to 4 decimal places.

--hints--

platonicDice() should return 2406376.3623.

assert.strictEqual(platonicDice(), 2406376.3623);

--seed--

--seed-contents--

function platonicDice() {

  return true;
}

platonicDice();

--solutions--

// solution required