RE: Automating a Calculation

-2

I'm just wondering how I'd go about automating this:

5.00 + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00% + 4.00%

4% (4.00%) is there 80 times.

But, see, I need it to be like: 5.00 + 4.00% = 5.20 (new base number to work off) + 4.00% = 5.408 (new base number to work off) and so on

I need it to be done 80 times...

Jonathan Jameson

Posted 2017-03-26T17:15:16.277

Reputation: 11

Question was closed 2017-03-30T01:55:13.857

Home work question? Have you tried searching for "Compound Interest"? – DavidPostill – 2017-03-26T17:19:41.707

Not home work. Yes, I know what compound interesting is. This actually has zero relation to money. Sorry! – Jonathan Jameson – 2017-03-26T17:21:02.763

1Well it's the same idea. – DavidPostill – 2017-03-26T17:21:34.643

25+4% is a loose expression of the mathematical formula 5*1.04. From that the answer should be obvious... – AFH – 2017-03-26T17:40:28.190

It's basically nearly 150. Yes? – Jonathan Jameson – 2017-03-26T19:29:01.050

Nope, the answer is 115.25 =5*(1.04)^80 – Scott Craner – 2017-03-27T13:54:58.413

Answers

1

This is where something call exponents comes in handy. 5*2*2*2 = 5*2^3 - we have 3 2's, so we do 2^3.

Now, +4% is the same as *1.04. You're repeating that 80 times. So, it'd be the same as 1.04^80.

Given that you're putting it in a %, I'd think you're doing stuff with money. The Future Value = The Present Value * (1+ Rate)^How many times.

Which becomes FV=5*(1+.04)^80

If you haven't hit high school yet (or the later years of middle, depending), kudos for going out and trying to figure stuff out on your own. If you have, there's a reason they said to pay attention in math.

Selkie

Posted 2017-03-26T17:15:16.277

Reputation: 429

Thank you! Not related to money, but thanks. – Jonathan Jameson – 2017-03-27T20:39:56.427

0

it's very simple, You just use the Iterations option,, for the formula particularly, for this Go to the File menu, then Options, then find Calculation, there you find check box by default its 1. Set it to 40 and reset to default after finish your job.

Rajesh S

Posted 2017-03-26T17:15:16.277

Reputation: 6 800