Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-235-an-arithmetic-geometric-sequence.md
2022-10-18 12:59:49 +05:30

45 lines
781 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: 5900f4571000cf542c50ff6a
title: '问题 235算术几何序列'
challengeType: 1
forumTopicId: 301879
dashedName: problem-235-an-arithmetic-geometric-sequence
---
# --description--
Given is the arithmetic-geometric sequence $u(k) = (900 - 3k)r^{k - 1}$.
Let $s(n) = \sum_{k=1 \ldots n} u(k)$.
Find the value of $r$ for which $s(5000) = -600\\,000\\,000\\,000$.
Give your answer rounded to 12 places behind the decimal point.
# --hints--
`arithmeticGeometricSequence()` should return `1.002322108633`.
```js
assert.strictEqual(arithmeticGeometricSequence(), 1.002322108633);
```
# --seed--
## --seed-contents--
```js
function arithmeticGeometricSequence() {
return true;
}
arithmeticGeometricSequence();
```
# --solutions--
```js
// solution required
```