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:
Thread 'Collision of a bullet on a rod-string system: query'
In this question, I have a question. I am NOT trying to solve it, but it is just a conceptual question. Consider the point on the rod, which connects the string and the rod. My question: just before and after the collision, is ANGULAR momentum CONSERVED about this point? Lets call the point which connects the string and rod as P. Why am I asking this? : it is clear from the scenario that the point of concern, which connects the string and the rod, moves in a circular path due to the string...

Similar threads

Back
Top