Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 04-05-2009, 07:10 PM   PM User | #1
autokustomizer
New Coder

 
Join Date: Apr 2009
Posts: 18
Thanks: 12
Thanked 0 Times in 0 Posts
autokustomizer is an unknown quantity at this point
Exponents in JavaScript without Math.pow

I am working on a problem that is simulating an IRA account. Someone enters their initial deposit, and then that number needs to be calculated out to a certain number of years. Is there any way to take a number to a power of itself without using the Math.pow?? I realized that by using this statement,
{CODE} whenS = (44 * (initialDep * (1 + interest))); {CODE}, I am not getting the correct answer, because after 44 years the compounded interest isn't calculated that way, but I cannot use the pow statement. I appreciate any ideas....I was thinking to use a loop to calculate it out...but I am still at the delima of not knowing how to use exponents without the pow. Thank you

Last edited by autokustomizer; 04-05-2009 at 07:18 PM.. Reason: Trying to get the code to come up correctly.
autokustomizer is offline   Reply With Quote
Old 04-05-2009, 07:27 PM   PM User | #2
jmrker
Senior Coder

 
jmrker's Avatar
 
Join Date: Aug 2006
Location: FL
Posts: 2,764
Thanks: 29
Thanked 453 Times in 447 Posts
jmrker will become famous soon enough
Question More information please ...

Quote:
Originally Posted by autokustomizer View Post
...
I am not getting the correct answer, because after 44 years the compounded interest isn't calculated that way, but I cannot use the pow statement. ...
So what is the correct formula to use after 44 years?
What is the answer you are getting
and what is the correct answer you expect to get?
jmrker is offline   Reply With Quote
Users who have thanked jmrker for this post:
autokustomizer (04-05-2009)
Old 04-05-2009, 07:30 PM   PM User | #3
autokustomizer
New Coder

 
Join Date: Apr 2009
Posts: 18
Thanks: 12
Thanked 0 Times in 0 Posts
autokustomizer is an unknown quantity at this point
I am trying to get whenS = (44 * (initialDep * (1 + interest)^44)); instead of multiplying it by the first 44, I am using the compound interest formula.
autokustomizer is offline   Reply With Quote
Old 04-05-2009, 09:13 PM   PM User | #4
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,187
Thanks: 59
Thanked 3,995 Times in 3,964 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
And can you tell us WHY you can't use Math.pow( ) ????

Without Math.pow, your only choice is to use a loop and multiply the value times itself 44 times. That is, of course, what "power" means.

That is, Math.pow( 3, 4 ) ==>> 3 * 3 * 3 * 3
and so on.

The one thing you do *NOT* want to do is *EVER* ANY PLACE IN THERE multiply by 44 !!!

The proper formula for compound interest is:
Code:
futureValue = presentValue * ( ( 1 + interestRate ) ^ numberOfPeriods )
or, in JavaScript notation:
Code:
futureValue = presentValue * Math.pow( 1 + interestRate, numberOfPeriods ) )
So what is stopping you from just using that formula???

Don't know why you ever thought you should multiply by 44, because you clearly SHOULD NOT.
Old Pedant is offline   Reply With Quote
Users who have thanked Old Pedant for this post:
autokustomizer (04-05-2009)
Old 04-05-2009, 09:18 PM   PM User | #5
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,187
Thanks: 59
Thanked 3,995 Times in 3,964 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
Oh, what the hell...

If you really think you shouldn't use Math.pow -- and I *still* don't see why you think you shouldn't -- you could code that as:
Code:
function futureValueOf( presentValue, periodicInterestRate, numberOfPeriods )
{
    var periodicGrowth = 1 + periodicInterestRate;
    var factor = 1;
    for ( var period = 1; period <= numberOfPeriods; ++period )
    {
         factor = factor * periodicGrowth;
    }
    return presentValue * factor;
}
But sure seems silly.

NOTE: Interest rate MUST be expressed as a decimal (not as a percent...so 1/100th of the percentage rate) and represent the rate per period. So if your periods are actually months, then the rate must be per month.
Old Pedant is offline   Reply With Quote
Users who have thanked Old Pedant for this post:
autokustomizer (04-05-2009)
Old 04-05-2009, 10:31 PM   PM User | #6
autokustomizer
New Coder

 
Join Date: Apr 2009
Posts: 18
Thanks: 12
Thanked 0 Times in 0 Posts
autokustomizer is an unknown quantity at this point
The pow statement would make it too easy, lol. My periods are once a year at a firm 10.00%. I am new to programming, I am trying to learn Java on my own. I went to Barnes and Noble and bought a Java Programming book, and I am working problems out of the book. The code you wrote does not appear to be completely in Java, so I am having difficulty understanding all of it...but I could be wrong, again I am just learning. Thank you.

Last edited by autokustomizer; 04-05-2009 at 10:47 PM..
autokustomizer is offline   Reply With Quote
Old 04-05-2009, 11:10 PM   PM User | #7
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,187
Thanks: 59
Thanked 3,995 Times in 3,964 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
You are posting in a JAVASCRIPT forum, *NOT* a JAVA forum.

The names are almost the only things the two languages have in common. Java is closer to C# and, in many ways, to C++ than it is to JavaSCRIPT.

Syntax and some standard library object names and methods are similar, but that's about as far as it goes. JavaSCRIPT does *NOT* have data types. The var declaration declares a variable that can hold *ANY* type, from a boolean to an integer to a floating point value to a string to an object reference to a function reference.

If you want to ask Java questions, try the Java forum, please.

I'll get you started with the Java version of my code, but then it's time to change forums, okay?
Code:
double futureValueOf( double presentValue, double periodicInterestRate, int numberOfPeriods )
{
    double periodicGrowth = 1.0 + periodicInterestRate;
    double factor = 1.0;
    for ( int period = 1; period <= numberOfPeriods; ++period )
    {
         factor = factor * periodicGrowth;
    }
    return presentValue * factor;
}
Untested, and my Java is slightly rusty, but I think that's right.
Old Pedant is offline   Reply With Quote
Users who have thanked Old Pedant for this post:
autokustomizer (04-05-2009)
Old 04-05-2009, 11:39 PM   PM User | #8
autokustomizer
New Coder

 
Join Date: Apr 2009
Posts: 18
Thanks: 12
Thanked 0 Times in 0 Posts
autokustomizer is an unknown quantity at this point
I apologize, sorry for the misinterpitation, but I did learn something new today! Thank you for your time and help. It was greatly appreciated!! CB
autokustomizer is offline   Reply With Quote
Old 04-05-2009, 11:56 PM   PM User | #9
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,187
Thanks: 59
Thanked 3,995 Times in 3,964 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
Well, neither JMerker nor I noticed that you said "Java", so it's clearly not all your fault! Not that there's any "fault" to be assigned, really. It's a pretty common mistake, albeit usually it's made the other way around, with people calling JavaScript "Java coding." So...sorry about my misleading you, too.
Old Pedant is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:50 PM.


Advertisement
Log in to turn off these ads.