Y
Hacker News
new
|
ask
|
show
|
jobs
by
solonagathon
3285 days ago
How would you calculate the timeframe until steady number of subscribers is achieve d?
2 comments
Sean1708
3285 days ago
If M is the number of months then (since you can't have a fraction of a subscriber) you will be in steady state when
Y * X^(M - 1) < 1
so once
M > 1 - (ln Y / ln X)
link
codefined
3285 days ago
Wouldn't it always require an infinite amount of time?
You're summing a series of:
0.5^n * x
From n = 1 to n = infinity
link
Sean1708
3285 days ago
Only if you can have a fraction of a subscriber, otherwise there will a finite number of months after which you will attain steady state.
link
Y * X^(M - 1) < 1
so once
M > 1 - (ln Y / ln X)