Hello. Sorry if I am posting this in the wrong section, as it is my first post and it is sort of a weird one question. This isn't for any sort of assignment, it was just something I randomly thought of and had no clue how to write it out correctly to solve.
So the main equation is...
x = (a * b) / c
b and c are always fraction (decimal representation of fractions)
That part is easy enough for me to figure out, but what I'm trying to do is take the solution for x from equation, and place it in a for the next round of the same equation. I basically want this to run infinitely (obviously this would keep going forever, but maybe have it stop once x becomes a few decimal places below 1) and always adding x from each round to the sum.
Since that might be a bit confusing, I'll fill out an example equation for 3 rounds...
b always = .1
c always = .7
a starts at 10,000
x = (10,000*.1)*.7
x = 700 (x becomes a in next cycle)
x = (700*.1)*.7
x = 49 (x becomes a in next cycle)
x = (49*.1)*.7
x = 3.43
so far the sum of x for 3 rounds is 700 + 49 + 3.43 = 752.43
I'm guessing this is some sort of multi part equation, but I assume there is a way to write this and have an online calculator, or Excel or something similar to calculate this I would think?
Again I apologize for the layman explanation of what i'm trying to figure out. Any help would be greatly appreciated!
So the main equation is...
x = (a * b) / c
b and c are always fraction (decimal representation of fractions)
That part is easy enough for me to figure out, but what I'm trying to do is take the solution for x from equation, and place it in a for the next round of the same equation. I basically want this to run infinitely (obviously this would keep going forever, but maybe have it stop once x becomes a few decimal places below 1) and always adding x from each round to the sum.
Since that might be a bit confusing, I'll fill out an example equation for 3 rounds...
b always = .1
c always = .7
a starts at 10,000
x = (10,000*.1)*.7
x = 700 (x becomes a in next cycle)
x = (700*.1)*.7
x = 49 (x becomes a in next cycle)
x = (49*.1)*.7
x = 3.43
so far the sum of x for 3 rounds is 700 + 49 + 3.43 = 752.43
I'm guessing this is some sort of multi part equation, but I assume there is a way to write this and have an online calculator, or Excel or something similar to calculate this I would think?
Again I apologize for the layman explanation of what i'm trying to figure out. Any help would be greatly appreciated!