Results 1 to 10 of 12
Hi,
Lately I have been doing some numeracy tests in order to prepare myself for a test based interview as it seems to be the case with some of the ...
- 04-25-2007 #1Linux Newbie
- Join Date
- Sep 2006
- Posts
- 175
Looking for a mathematical formula
Hi,
Lately I have been doing some numeracy tests in order to prepare myself for a test based interview as it seems to be the case with some of the firms hiring these days. Here is the question. I can not get my head around it. In fact I can get the answer doing it manually, but I think there a mathematical formula available to work this kind of problems out. Thanks a lot.
A town with a population of 2000 grows at a rate of 30% per annum. What will be its population in the next 4 years?
- 04-25-2007 #2
- 04-25-2007 #3
What you need is a straightforward compound interest formula. Have you taken a look on Wikipedia for help here?
Linux user #126863 - see http://linuxcounter.net/
- 04-25-2007 #4
- 04-25-2007 #5
Must be a boring place to live, if the population increases at just 30% each year ...
Roughly 4400?I am always doing that which I can not do, in order that I may learn how to do it. - Pablo Picasso
- 04-25-2007 #6
- 04-25-2007 #7
lol, I think you're overcomplicating it somewhat. It's a simple algorithm.
Value N grows by X% per year over Y years...
In pseudocode:
As you're looking at a timescale measured in years, you dont need to worry about numbers of days.Code:int value = N const rate = X const years = Y for (i = 1 to years) value = value+((value*rate)/100) next i return valueLinux user #126863 - see http://linuxcounter.net/
- 04-25-2007 #8
- 04-25-2007 #9
Roxoff is 100% correct. This is just a matter of a simple compound interest formula!!!
???. Banks aren't the only people that use this type of formula!!!!Why would bank interest be more relevant?" I didn't know it was a picture of his wife! I thought it was a publicity shot form Planet Of the Apes."
- 04-26-2007 #10Linux user #126863 - see http://linuxcounter.net/


Reply With Quote

