2018-10-10 18:03:03 -04:00
---
id: 5900f4aa1000cf542c50ffbc
2021-02-06 04:42:36 +00:00
title: 'Problem 317: Firecracker'
2018-10-10 18:03:03 -04:00
challengeType: 5
2021-02-06 04:42:36 +00:00
forumTopicId: 301973
2021-01-13 03:31:00 +01:00
dashedName: problem-317-firecracker
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
A firecracker explodes at a height of 100 m above level ground. It breaks into a large number of very small fragments, which move in every direction; all of them have the same initial velocity of 20 m/s.
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
We assume that the fragments move without air resistance, in a uniform gravitational field with g=9.81 m/s2.
2020-02-18 01:40:55 +09:00
2021-02-06 04:42:36 +00:00
Find the volume (in m3) of the region through which the fragments move before reaching the ground. Give your answer rounded to four decimal places.
2020-02-18 01:40:55 +09:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`euler317()` should return 1856532.8455.
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert.strictEqual(euler317(), 1856532.8455);
2018-10-10 18:03:03 -04:00
```
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```js
function euler317() {
return true;
}
euler317();
```
2020-12-16 00:37:30 -07:00
# --solutions--
2020-08-13 17:24:35 +02:00
2021-01-13 03:31:00 +01:00
```js
// solution required
```