825 B
825 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f4571000cf542c50ff6a | Problema 235: Uma sequência geométrica aritmética | 5 | 301879 | problem-235-an-arithmetic-geometric-sequence |
--description--
Você é informado de que a sequência aritmética geométrica u(k) = (900 - 3k)r^{k - 1}
.
Considere s(n) = \sum_{k=1 \ldots n} u(k)
.
Encontre o valor de r
para o qual s(5000) = -600.000.000.000
.
Dê sua resposta arredondada para 12 casas depois da vírgula.
--hints--
arithmeticGeometricSequence()
deve retornar 1.002322108633
.
assert.strictEqual(arithmeticGeometricSequence(), 1.002322108633);
--seed--
--seed-contents--
function arithmeticGeometricSequence() {
return true;
}
arithmeticGeometricSequence();
--solutions--
// solution required