Results 1 to 4 of 4

Thread: Solve for Amortizing Periods

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    2

    Solve for Amortizing Periods

    Hi,

    I am having difficulty with this financial equation in one of my apps.

    Given:

    // E9 Principal Amount (in Dollars)
    // D11 Payments per Year (12=Monthly, 26=Bi-Weekly, 52=Weekly)
    // D12 Published Interest Rate (i.e. 9% = 0.09)
    // D13 Times per Year Interest Calculated (12=Normal/US Mortage 2=CDN Mortgage)

    Find:
    // D10 Amortization Period (in Years i.e. 6 months = 0.5)

    I have looked around everywhere and there are many formulas to solve for Payments (D10) and even some which will solve for the Period of the loan (D10). The problem is, they do not take D13 into account (Times per year interest is compounded).

    Does anyone know how to do this or have a formula handy?

    Thanks in advance.

  2. #2
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    Code:
    t = (log(A / P)/log(1 + (r / n))) / n
    Where A = Amount, P = Principal, r = rate, n = number of times compounded yearly, and t = # of years.
    My evil laugh has a squeak in it.

    kristopherwilson.com

  3. #3

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    2

    Great

    Hi, Thanks... i'll try it out!

  4. #4
    Fanatic Member prog_tom's Avatar
    Join Date
    May 2001
    Location
    Los Angeles and Little Rock
    Posts
    810
    just in case you wonder where he got t from, here is the original form:

    A=P(1+r/n)^nt --- compounded n times a year for t years

    A=Pe^rt ----- counpounded continuously, where e is Euler's Number, approx. 2.718281828

    prog_tom
    JOIN THE REVOLUTION!!!! Dual T3 backedup science community.
    http://physics.sviesoft.com/forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width