Investment Calculator: Calculating Total Profit~~

  • Thread starter Thread starter neik
  • Start date Start date
  • Tags Tags
    Calculator
AI Thread Summary
The discussion focuses on calculating the final value and total profit of an investment using the formula FV = Principal*(1+{R/N})^{NT}, where various parameters define the investment's characteristics. Participants clarify that this equation is suitable for compounding interest from a single payment and emphasize the importance of adjusting the interest rate based on the compounding frequency. A key point raised is that total profit can be calculated by subtracting the original principal from the final value. The conversation also suggests using spreadsheets to verify calculations before coding in VB6. Understanding these concepts is essential for accurately determining investment outcomes.
neik
Messages
15
Reaction score
0
Hi everybody,

I have given an equation to calculate the final Value (FV) of an investment as follows:

FV= Principal*(1+{R/N})^{NT}

Where:
Principal = initial investment amount,
R = annual interest rate,
N = number of times compounding is performed per year; this can be quaterly (4 times), monthly (12 times), or daily (365)
T = number of investment years

i was asked to find the final amount and total profit after x years.
and also the total amount after the first month, second month, third month, etc...

actually I'm learning VB6 now, and i have no idea about this equation

can someone give me some hints to solve this?

thanks in advance.
 
Physics news on Phys.org
Sometimes you will find that the equation I=PRT, is easier to use for some questions.
I=interest earned
P=princepal invested
T=time

EDIT: I didn't notice that you said months, oops
sorry, disregard my post :)
 
Last edited:
What you have is the equation for compounding interest from a single payment. In other words, you put "X" amount of dollars into an account, how much will you have after "Y" amount of time. The important part is that it is for a single payment.

The general term of the equation is:

<br /> F = P (1 + i)^n

where:
F = Future worth of the investment
P = Present worth of the investment
i = anual interest rate (IN DECIMAL FORM!)
n = number of compounding periods

There's one little snag to this equation. The number that you use for the interest rate is dependent upon how often you are compounding. If you are compounding annually, n will be the number of years compounding and i will be the anual percentage rate (in decimal form). However, if you want to compound monthly, like you said in your question, n will be the number of months compounding and i will be the anual percentage rate divided by 12. If you want to compound daily, divide i by 365. The equation you stated is the same equation I have given except it takes this step into account.

It's a pretty straight forward equation to use once you get the little trick down. It's very easy to set this up in a spreadsheet. I would suggest doing that and using that as a sanity check on your VB code results.
 
hi, thanks for responding

but i still don't know how to calculate the "total profit"
any ideas?
 
neik said:
hi, thanks for responding

but i still don't know how to calculate the "total profit"
any ideas?
Is it simple interest?
 
neik said:
hi, thanks for responding

but i still don't know how to calculate the "total profit"
any ideas?
Using your terminology, "Total Profit" is normally determined from:

\ \ \ (Total \ Profit) \ = \ (Final \ Value) \ - \ (Original \ Principle)



~~
 
Last edited:
I multiplied the values first without the error limit. Got 19.38. rounded it off to 2 significant figures since the given data has 2 significant figures. So = 19. For error I used the above formula. It comes out about 1.48. Now my question is. Should I write the answer as 19±1.5 (rounding 1.48 to 2 significant figures) OR should I write it as 19±1. So in short, should the error have same number of significant figures as the mean value or should it have the same number of decimal places as...
Thread 'A cylinder connected to a hanging mass'
Let's declare that for the cylinder, mass = M = 10 kg Radius = R = 4 m For the wall and the floor, Friction coeff = ##\mu## = 0.5 For the hanging mass, mass = m = 11 kg First, we divide the force according to their respective plane (x and y thing, correct me if I'm wrong) and according to which, cylinder or the hanging mass, they're working on. Force on the hanging mass $$mg - T = ma$$ Force(Cylinder) on y $$N_f + f_w - Mg = 0$$ Force(Cylinder) on x $$T + f_f - N_w = Ma$$ There's also...

Similar threads

Back
Top